telegram-mcp-server vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
telegram-mcp-server by abhinavkale-dev | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 4 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 30 | 84 |
| Official | — | — |
| Categories | CommunicationDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this month |
telegram-mcp-server · Summary
A Model Context Protocol server enabling AI assistants to interact with Telegram through standardized tools.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
telegram-mcp-server · Use cases
- Automating customer support responses through Telegram
- Creating AI-powered notification systems for Telegram groups
- Building custom Telegram bots with AI capabilities
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-server · Install
Installation
- Install dependencies:
npm install- Create a
.envfile with your Telegram Bot Token:
TELEGRAM_BOT_TOKEN=your_bot_token_here- Build the TypeScript project:
npm run build- Start the server:
npm startClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"telegram": {
"command": "node",
"args": ["path/to/telegram-mcp-server/dist/telegram-mcp.js"],
"env": {
"TELEGRAM_BOT_TOKEN": "your_bot_token_here"
}
}
}
}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"]
}
}
}