mcp-server-chart vs telegram-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | telegram-mcp by chaindead | |
|---|---|---|
| Stars | ★ 4,068 | ★ 326 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationProductivity |
| Language | TypeScript | Go |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
telegram-mcp · Summary
A Go-based MCP server that bridges Telegram API with AI assistants for managing messages, dialogs, and drafts.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
telegram-mcp · Use cases
- Checking and summarizing unread Telegram messages through an AI assistant
- Organizing Telegram chats by importance and categorization with AI suggestions
- Monitoring specific chats for updates about topics and drafting responses
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}telegram-mcp · Install
Installation
**Homebrew** (macOS/Linux):
brew install chaindead/tap/telegram-mcp**NPX** (cross-platform):
npx -y @chaindead/telegram-mcp**From Releases**: Download the appropriate binary for your platform from [GitHub Releases](https://github.com/chaindead/telegram-mcp/releases)
**From Source**:
go install github.com/chaindead/telegram-mcp@latest**Claude Desktop Configuration**:
{
"mcpServers": {
"telegram": {
"command": "telegram-mcp",
"env": {
"TG_APP_ID": "<your-app-id>",
"TG_API_HASH": "<your-api-hash>"
}
}
}
}