mcp-server-chart vs mcp-telegram
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-telegram by dryeab | |
|---|---|---|
| Stars | ★ 4,068 | ★ 243 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-telegram · Summary
MCP server enabling LLMs to interact with Telegram through messaging, search, and media operations.
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
mcp-telegram · Use cases
- Automating Telegram messaging workflows through AI agents
- Integrating Telegram notifications into AI-powered assistants
- Analyzing or processing Telegram message content with LLMs
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"]
}
}
}mcp-telegram · Install
Installation
- Install prerequisites:
- Python 3.10 or higher - uv (follow [official uv guide](https://github.com/astral-sh/uv#installation))
- Install the CLI tool:
uv tool install mcp-telegram- Authenticate with your Telegram account:
mcp-telegram login- Configure your MCP client (e.g., Claude Desktop) with:
{
"mcpServers": {
"mcp-telegram": {
"command": "mcp-telegram",
"args": ["start"],
"env": {
"API_ID": "<your_api_id>",
"API_HASH": "<your_api_hash>"
}
}
}
}