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 | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | CommunicationAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this 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
- Install Bun:
curl -fsSL https://bun.sh/install | bash - Create a bot with BotFather on Telegram
- Install the official plugin:
/plugin install telegram@claude-plugins-official - 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- Configure the bot token:
/telegram:configure <token> - Launch with channel flag:
claude --channels plugin:telegram@claude-plugins-official - 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