mcp-server-chart vs fieldflow
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | fieldflow by guillaumegay13 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 111 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| 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.
fieldflow · Summary
FieldFlow converts OpenAPI endpoints into selectively filtered tools with MCP support for AI clients like Claude Desktop.
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
fieldflow · Use cases
- Reducing API response payload size for AI models to minimize context window usage
- Creating filtered API access for AI applications through MCP protocol
- Simplifying complex API responses by selecting only relevant fields
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"]
}
}
}fieldflow · Install
# Install with MCP support
pip install -e '.[mcp]'
# Run HTTP server
fieldflow serve-http
# Run MCP server (for Claude Desktop)
fieldflow-mcpFor Claude Desktop integration, add to config:
{
"mcpServers": {
"fieldflow": {
"command": "python",
"args": ["-m", "fieldflow_mcp.cli"]
}
}
}