mcp-server-chart vs FastAPI-BitNet
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | FastAPI-BitNet by grctest | |
|---|---|---|
| Stars | ★ 4,068 | ★ 38 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 11 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-BitNet · Summary
FastAPI-based MCP server for Microsoft's BitNet model with session management, chat, and benchmarking capabilities.
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-BitNet · Use cases
- Programmatic testing and benchmarking of BitNet models
- Chat with multiple BitNet instances via API
- Integrate BitNet capabilities into VS Code Copilot as a tool
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-BitNet · Install
Installation
- Prerequisites: Docker Desktop, Conda, Python 3.10+
- Set up Python environment:
``bash conda create -n bitnet python=3.11 conda activate bitnet ``
- Install Huggingface CLI:
``bash pip install -U "huggingface_hub[cli]" ``
- Download BitNet model:
``bash huggingface-cli download microsoft/BitNet-b1.58-2B-4T-gguf --local-dir app/models/BitNet-b1.58-2B-4T ``
- Run with Docker (recommended):
``bash docker build -t fastapi_bitnet . docker run -d --name ai_container -p 8080:8080 fastapi_bitnet ``
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"fastapi-bitnet": {
"command": "http",
"args": ["http://localhost:8080/mcp"]
}
}
}