Intercom MCP vs Telegram MCP Server (chigwell)
A side-by-side comparison of two Communication servers — tools, transport, auth, maintenance, and copy-paste config for each.
| Intercom MCP Intercom's hosted MCP server: search and fetch conversations and contacts from your US workspace over OAuth. Unverified HTTP (remote) OAuth Stale | Telegram MCP Server (chigwell) Full Telegram user-account MCP via MTProto: read chats, manage groups, send messages Verified stdio (local) API key Python | |
|---|---|---|
| Category | Communication | Communication |
| Language | — | Python |
| Transport | HTTP (remote) | stdio (local) |
| Auth | OAuth | API key |
| GitHub stars | 7 | 1.2k |
| Last commit | 9 months ago | 24 days ago |
| Verified | ||
| Actively maintained | ||
| Install | npx mcp-remote https://mcp.intercom.com/mcp | git clone https://github.com/chigwell/telegram-mcp && cd telegram-mcp && uv sync && uv run main.py |
| Repo | Open | Open |
Verdict
Pick Intercom MCP if you want the official, vendor-maintained server, and you want a hosted/remote server with nothing to install.
Pick Telegram MCP Server (chigwell) if you prefer the more popular, battle-tested option, and you want a local (stdio) server that keeps data on your machine.
Add Intercom MCP
npx mcp-remote https://mcp.intercom.com/mcpPaste into ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"intercom-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.intercom.com/mcp"
]
}
}
}Claude Desktop connects to remote servers through the `mcp-remote` proxy (installed on first run via npx). Restart Claude Desktop after saving.
Add Telegram MCP Server (chigwell)
git clone https://github.com/chigwell/telegram-mcp && cd telegram-mcp && uv sync && uv run main.pyPaste into ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"telegram-mcp-server-chigwell": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/telegram-mcp",
"run",
"main.py"
],
"env": {
"TELEGRAM_API_ID": "<your-telegram-api-id>",
"TELEGRAM_API_HASH": "<your-telegram-api-hash>",
"TELEGRAM_SESSION_STRING": "<your-generated-session-string>"
}
}
}
}FAQ
Intercom MCP or Telegram MCP Server (chigwell) — which is better?
Pick Intercom MCP if you want the official, vendor-maintained server, and you want a hosted/remote server with nothing to install. Pick Telegram MCP Server (chigwell) if you prefer the more popular, battle-tested option, and you want a local (stdio) server that keeps data on your machine.
Can I use both Intercom MCP and Telegram MCP Server (chigwell)?
Yes — MCP clients let you enable multiple servers at once. Add both configs to your client's mcpServers and use whichever tool fits the task.
Do Intercom MCP and Telegram MCP Server (chigwell) work with Claude, Cursor and Windsurf?
Both do. Copy the per-client config below into Claude Desktop, Cursor, or Windsurf.