mcp-server-chart vs flapi
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | flapi by DataZooDE | |
|---|---|---|
| Stars | ★ 4,068 | ★ 70 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | C++ |
| 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.
flapi · Summary
flAPI generates SQL-based APIs with DuckDB and provides MCP tools for AI agents.
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
flapi · Use cases
- Creating APIs for large datasets without writing custom backend code
- Building data tools for AI agents with SQL-based access
- Exposing enterprise data sources as secure endpoints with authentication
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"]
}
}
}flapi · Install
Installation
The easiest way to try flAPI is using uvx:
uvx --from flapi-io flapi -c flapi.yamlOr install permanently:
pip install flapi-ioUsing Docker:
docker pull ghcr.io/datazoode/flapi:latest
docker run -it --rm -p 8080:8080 -p 8081:8081 -v $(pwd)/examples/:/config ghcr.io/datazoode/flapi -c /config/flapi.yaml --enable-mcpClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"flapi": {
"command": "flapi",
"args": ["--enable-mcp"]
}
}
}