MCP Catalogs
Home

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 uses10,239
Score8439
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
DatabaseCloud StorageDeveloper Tools
LanguageTypeScriptPython
Last committhis month11 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-chart

For 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

  1. Clone the repository:
git clone https://github.com/raghavdasila/django-firebase-mcp.git
cd django-firebase-mcp
  1. Install dependencies:
pip install -r requirements.txt
  1. Set up Firebase credentials:
  • Download service account key from Firebase Console
  • Save as credentials.json in project root
  1. 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
  1. Test with standalone agent:
python firebase_admin_mcp/standalone_firebase_agent.py

Claude 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"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.