MCP Catalogs
Home

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
Score7738
Official
Categories
Developer ToolsAI / LLM ToolsOther
CommunicationAI / LLM ToolsDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month1 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-everything

tgfmcp · Install

Installation

  1. Install globally:
npm install -g tgfmcp
  1. Configure your bot token:
tgfmcp configure
  1. Run the MCP server:
tgfmcp mcp

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "telegram": {
      "command": "tgfmcp",
      "args": ["mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.