django-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
django-mcp by hyperb1iss | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsDatabase | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 14 mo ago | this month |
django-mcp · Summary
A Python package that bridges Django apps with AI assistants using MCP through decorators.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything