mcp-server-chart vs cursor-rust-tools
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cursor-rust-tools by terhechte | |
|---|---|---|
| Stars | ★ 4,068 | ★ 83 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | Rust |
| Last commit | this month | 12 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
cursor-rust-tools · Summary
MCP server enabling Rust LLMs to access Rust Analyzer, Crate Docs, and Cargo commands in Cursor.
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
cursor-rust-tools · Use cases
- Enable AI coding assistants to provide accurate Rust type information and documentation in Cursor
- Allow AI agents to run cargo check and test commands for real-time validation
- Integrate up-to-date dependency documentation into AI coding workflows
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"]
}
}
}cursor-rust-tools · Install
Installation
cargo install --git https://github.com/terhechte/cursor-rust-toolsRun with UI
cursor-rust-toolsRun without UI
cursor-rust-tools --no-uiConfiguration
Create a ~/.cursor-rust-tools configuration file with TOML format:
[[projects]]
root = "/path/to/your/rust/project"
ignore_crates = []Claude Desktop Configuration
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"cursor-rust-tools": {
"command": "cursor-rust-tools",
"args": []
}
}
}Then configure your project with a .cursor/mcp.json file to enable the server for specific projects.