mcp-server-chart vs mcp-server-12306
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-12306 by drfccv | |
|---|---|---|
| Stars | ★ 4,068 | ★ 327 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolstravelDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 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-server-12306 · Summary
A high-performance 12306 train ticket query system that provides real-time data via MCP protocol.
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-server-12306 · Use cases
- AI assistants helping travelers find and compare train options
- Automated travel booking systems requiring real-time 12306 data
- Applications that need to display live railway schedules and availability
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-server-12306 · Install
Installation
Mode 1: Stdio Mode (Recommended for Claude Desktop)
Using uvx:
{
"mcpServers": {
"12306": {
"command": "uvx",
"args": ["mcp-server-12306"]
}
}
}Using pipx:
{
"mcpServers": {
"12306": {
"command": "pipx",
"args": ["run", "--no-cache", "mcp-server-12306"]
}
}
}Mode 2: HTTP Mode
git clone https://github.com/drfccv/mcp-server-12306.git
cd mcp-server-12306
uv sync
uv run python scripts/start_server.pyClient configuration:
{
"mcpServers": {
"12306": {
"url": "http://localhost:8000/mcp"
}
}
}