mcp-server-chart vs semble
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | semble by MinishLab | |
|---|---|---|
| Stars | ★ 4,068 | ★ 823 |
| 30d uses | 10,239 | — |
| Score | 84 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsSearch |
| Language | TypeScript | Python |
| 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.
semble · Summary
High-performance code search library that runs as an MCP server with 98% fewer tokens than grep+read.
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
semble · Use cases
- Provide instant code search capabilities for AI coding assistants like Claude Code, Cursor, Codex, and OpenCode
- Replace traditional grep workflows in development environments with more efficient natural language queries
- Help developers navigate large codebases quickly by finding relevant code chunks without reading entire files
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"]
}
}
}semble · Install
Installation
- Install Semble:
pip install semble[mcp]
# or
uv tool install semble- Add to Claude Desktop:
{
"mcpServers": {
"semble": {
"command": "uvx",
"args": ["--from", "semble[mcp]", "semblable"]
}
}
}- Add to Codex config (
~/.codex/config.toml):
[mcp_servers.semble]
command = "uvx"
args = ["--from", "semblable[mcp]", "semblable"]