mcp-server-chart vs django-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | django-mcp by hyperb1iss | |
|---|---|---|
| Stars | ★ 4,068 | ★ 16 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsDatabase |
| Language | TypeScript | Python |
| Last commit | this month | 14 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-mcp · Summary
A Python package that bridges Django apps with AI assistants using MCP through decorators.
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-mcp · Use cases
- Allow AI assistants to interact with and query Django application data
- Expose Django admin functionality to AI assistants for automated tasks
- Create AI-powered interfaces for exploring and managing Django application content
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-mcp · Install
Installation
# Install with pip
pip install django-mcp
# Or with UV
uv add django-mcpConfiguration
- Add to INSTALLED_APPS:
# settings.py
INSTALLED_APPS = [
# ... your other apps ...
'django_mcp',
]- Update ASGI configuration:
# asgi.py
from django_mcp.asgi import get_asgi_application
application = get_asgi_application()- Include MCP URLs:
# urls.py
from django.urls import path, include
urlpatterns = [
# ... your other URLs ...
path('', include('django_mcp.urls')),
]Claude Desktop Configuration
Add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"django-mcp": {
"command": "python",
"args": ["-m", "django_mcp.server"],
"env": {
"DJANGO_SETTINGS_MODULE": "your_project.settings"
}
}
}
}