mcp-server-chart vs mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp by EmilLindfors | |
|---|---|---|
| Stars | ★ 4,068 | ★ 18 |
| 30d uses | 10,239 | — |
| Score | 84 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsFile SystemAI / LLM Tools |
| Language | TypeScript | Rust |
| Last commit | this month | 18 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 · Summary
Rust implementation of MCP providing standardized communication between AI models and external resources.
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 · Use cases
- Building MCP servers that expose file system resources to AI models
- Creating AI applications that need to access external data through MCP
- Developing type-safe AI integrations using Rust with protocol enforcement
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 · Install
Installation
Add to your Cargo.toml:
[dependencies]
mcp = "0.1.0"Running the Server
# Run with test config
cargo run --bin server -- --config "../servers/test.json"
# Run with stdio transport
cargo run --bin server -t stdio
# Run with SSE transport on port 3000
cargo run --bin server -t sse -p 3000Claude Desktop Integration
Add to Claude's claude_desktop_config.json:
{
"mcpServers": {
"mcp-rs": {
"command": "cargo",
"args": ["run", "--bin", "server", "--", "-t", "stdio"]
}
}
}