mcp-server-chart vs fastapi_mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | fastapi_mcp by tadata-org | |
|---|---|---|
| Stars | ★ 4,068 | ★ 11,863 |
| 30d uses | 10,239 | — |
| Score | 84 | 60 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsWeb ScrapingAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
fastapi_mcp · Summary
FastAPI-MCP exposes FastAPI endpoints as MCP tools with built-in authentication.
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
fastapi_mcp · Use cases
- Convert existing REST APIs to MCP tools for AI agents
- Securely expose internal API endpoints to language models
- Create MCP servers from existing FastAPI services with minimal code changes
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"]
}
}
}fastapi_mcp · Install
Install with uv or pip:
uv add fastapi-mcppip install fastapi-mcpBasic usage in FastAPI app:
from fastapi import FastAPI
from fastapi_mcp import FastApiMCP
app = FastAPI()
mcp = FastApiMCP(app)
mcp.mount()For Claude Desktop, add to config.json:
{
"mcpServers": {
"fastapi": {
"command": "python",
"args": ["-m", "fastapi_mcp"]
}
}
}