mcp-server-chart vs railway-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | railway-mcp by jason-tan-swe | |
|---|---|---|
| Stars | ★ 4,068 | ★ 72 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
railway-mcp · Summary
A TypeScript MCP server for Railway.app that enables infrastructure management through natural language commands.
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
railway-mcp · Use cases
- Deploy and manage Railway services directly from AI assistants
- Automate infrastructure configuration and variable management
- Monitor deployments and access logs through natural language queries
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"]
}
}
}railway-mcp · Install
Installation
Prerequisites
- Node.js 18+
- Railway account
- Railway API token (create at https://railway.app/account/tokens)
Quick Start
**Using Smithery (recommended):**
npx -y @smithery/cli install @jason-tan-swe/railway-mcp --client claude**Manual Installation for Claude Desktop:** Add to your config file (claude_desktop_config.json):
{
"mcpServers": {
"railway": {
"command": "npx",
"args": ["-y", "@jasontanswe/railway-mcp"],
"env": {
"RAILWAY_API_TOKEN": "your-railway-api-token-here"
}
}
}
}**Manual Installation for Cursor:**
- Go to Cursor settings > MCP section
- Click 'Add new MCP server'
- Name it 'railway-mcp'
- Command:
npx -y @jasontanswe/railway-mcp <RAILWAY_API_TOKEN>