mcp-server-chart vs code-assistant
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | code-assistant by stippi | |
|---|---|---|
| Stars | ★ 4,068 | ★ 163 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
code-assistant · Summary
Rust-based AI coding assistant with GUI, CLI, MCP and ACP modes offering autonomous code analysis and modification.
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
code-assistant · Use cases
- Automated code refactoring and optimization across multiple projects
- Real-time debugging and issue resolution through conversational interface
- Integration with IDEs like Zed via ACP protocol for enhanced coding assistance
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"]
}
}
}code-assistant · Install
Installation
# Install Rust tool chain via rustup
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Clone and build
git clone https://github.com/stippi/code-assistant
cd code-assistant
cargo build --releaseClaude Desktop Integration
Configure in Claude Desktop settings (**Developer** tab → **Edit Config**):
{
"mcpServers": {
"code-assistant": {
"command": "/path/to/code-assistant/target/release/code-assistant",
"args": ["server"],
"env": {
"SHELL": "/bin/zsh"
}
}
}
}