mcp-server-chart vs heuristic-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | heuristic-mcp by softerist | |
|---|---|---|
| Stars | ★ 4,068 | ★ 21 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsSearch |
| Language | TypeScript | JavaScript |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
heuristic-mcp · Summary
An MCP server that enables semantic code search with call-graph proximity and recency ranking for AI coding assistants.
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
heuristic-mcp · Use cases
- Finding relevant code patterns in large codebases using natural language queries
- Locating specific functions or classes based on semantic similarity rather than exact matches
- Discovering related code that might be affected by changes to specific parts of the project
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"]
}
}
}heuristic-mcp · Install
npm install -g @softerist/heuristic-mcpThen start the server:
heuristic-mcp --startFor Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"heuristic": {
"command": "heuristic-mcp",
"args": ["--start"]
}
}
}