mcp-server-chart vs django-firebase-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | django-firebase-mcp by raghavdasila | |
|---|---|---|
| Stars | ★ 4,068 | ★ 15 |
| 30d uses | 10,239 | — |
| Score | 84 | 39 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseCloud StorageDeveloper 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.
django-firebase-mcp · Summary
A Django-based MCP server providing 14 Firebase tools for AI agents to interact with Firestore, Auth, and Cloud Storage.
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
django-firebase-mcp · Use cases
- Building AI agents that need to interact with Firebase databases and storage
- Creating applications that require user authentication through Firebase
- Developing prototypes with real backend services using MCP tools
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"]
}
}
}django-firebase-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/raghavdasila/django-firebase-mcp.git
cd django-firebase-mcp- Install dependencies:
pip install -r requirements.txt- Set up Firebase credentials:
- Download service account key from Firebase Console
- Save as
credentials.jsonin project root
- Configure environment variables:
Create .env file with:
SERVICE_ACCOUNT_KEY_PATH=credentials.json
FIREBASE_STORAGE_BUCKET=your-project-id.appspot.com
MCP_TRANSPORT=http
MCP_HOST=127.0.0.1
MCP_PORT=8001- Test with standalone agent:
python firebase_admin_mcp/standalone_firebase_agent.pyClaude Desktop Configuration
Add to Claude Desktop config.json:
"mcpServers": {
"django-firebase-mcp": {
"command": "python",
"args": ["manage.py", "run_mcp"],
"env": {
"PYTHONPATH": "/path/to/django-firebase-mcp"
}
}
}