drf-mcp-docs vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
drf-mcp-docs by Abdulkhalek-1 | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 17 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 43 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
drf-mcp-docs · Summary
An MCP server that exposes Django REST Framework API documentation to AI coding agents for frontend development assistance.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
drf-mcp-docs · Use cases
- AI assistants generating React/Vue/Angular hooks to consume your DRF API
- Automatic generation of typed API client code in TypeScript or Python
- Documentation exploration where AI can query endpoint details and examples
- Creating integration tutorials and guides with automatically generated code snippets
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
drf-mcp-docs · Install
Installation
pip install drf-mcp-docs
# With specific schema generator:
pip install drf-mcp-docs[spectacular] # recommended
pip install drf-mcp-docs[yasg]Configuration
Add to your Django settings:
INSTALLED_APPS = [
# ...
'rest_framework',
'drf_mcp_docs',
]Running
**stdio transport** (for local AI tools):
python manage.py runmcpserver --transport stdio**Streamable HTTP transport** (for network access):
python manage.py runmcpserver --transport streamable-http --host 0.0.0.0 --port 8100Claude Desktop Configuration
Add to ~/.claude.json:
{
"mcpServers": {
"my-api-docs": {
"command": "python",
"args": ["manage.py", "runmcpserver", "--transport", "stdio"],
"cwd": "/path/to/your/django/project"
}
}
}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"]
}
}
}