mcp-server-chart vs mcp_tool_override_tester
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp_tool_override_tester by kibitzing | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 25 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| 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.
mcp_tool_override_tester · Summary
A Python MCP server demonstrating dynamic tool overriding across multiple servers.
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_tool_override_tester · Use cases
- Testing tool precedence in MCP configurations with multiple servers
- Demonstrating how tool conflicts are resolved in MCP setups
- Learning MCP tool override mechanisms for advanced configuration
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_tool_override_tester · Install
Install using uvx:
uvx run --from mcp-tool-override-tester@latest override_mcp_toolsAdd to Claude Desktop config:
{
"mcpServers": {
"override_tester": {
"command": "/path/to/your/uvx",
"args": [
"--from",
"mcp-tool-override-tester@latest",
"override_mcp_tools"
]
}
}
}