MCP Catalogs
Home

claude-telegram-supercharged vs everything

Side-by-side comparison to help you pick between these two MCP servers.

claude-telegram-supercharged
by k1p1l0
everything
by modelcontextprotocol
Stars★ 101★ 85,748
30d uses
Score4777
Official
Categories
CommunicationAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

claude-telegram-supercharged · Summary

Enhanced Telegram plugin for Claude Code with threading, voice messages, stickers, GIFs, and more.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

claude-telegram-supercharged · Use cases

  • Enhanced AI communication through Telegram with voice messages and media support
  • Group conversation management with threading and persistent memory
  • Automated task execution and scheduling via Telegram commands

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

claude-telegram-supercharged · Install

Installation

  1. Install Bun: curl -fsSL https://bun.sh/install | bash
  2. Create a bot with BotFather on Telegram
  3. Install the official plugin: /plugin install telegram@claude-plugins-official
  4. Clone and apply the supercharged version:
git clone https://github.com/k1p1l0/claude-telegram-supercharged.git
cp claude-telegram-supercharged/server.ts ~/.claude/plugins/cache/claude-plugins-official/telegram/0.0.1/server.ts
mkdir -p ~/.claude/scripts
cp claude-telegram-supercharged/supervisor.ts ~/.claude/scripts/telegram-supervisor.ts
  1. Configure the bot token: /telegram:configure <token>
  2. Launch with channel flag: claude --channels plugin:telegram@claude-plugins-official
  3. Pair with your bot in Telegram DM

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
Comparison generated from public README + GitHub signals. Last updated automatically.