everything vs tgfmcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | tgfmcp by vaibhavpandeyvpz | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | CommunicationAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
tgfmcp · Summary
Telegram stdio MCP server exposing Bot API tools and message notifications through Telegraf.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
tgfmcp · Use cases
- Automate Telegram bot interactions through MCP-compatible clients like Claude Desktop
- Integrate Telegram messaging into AI workflows as a tool or notification channel
- Create automated Telegram message handlers and bots using MCP protocol
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingtgfmcp · Install
Installation
- Install globally:
npm install -g tgfmcp- Configure your bot token:
tgfmcp configure- Run the MCP server:
tgfmcp mcpFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"telegram": {
"command": "tgfmcp",
"args": ["mcp"]
}
}
}