drf-mcp-docs vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
drf-mcp-docs by Abdulkhalek-1 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 17 | ★ 149 |
| 30d uses | — | — |
| Score | 43 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsProductivity | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | 2 mo ago | 2 mo ago |
drf-mcp-docs · Summary
An MCP server that exposes Django REST Framework API documentation to AI coding agents for frontend development assistance.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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"
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server