django-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
django-mcp-server by gts360 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 332 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsDatabase | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
django-mcp-server · Summary
Django MCP Server enables AI agents to interact with Django applications through Model Context Protocol.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
django-mcp-server · Use cases
- Enabling Claude AI or other LLM agents to query and manipulate Django application data
- Converting existing Django Rest Framework APIs into MCP tools for AI agent consumption
- Building AI-powered interfaces for Django applications with custom toolsets
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-server · Install
Installation
- Install the package:
pip install django-mcp-server- Add to Django settings:
INSTALLED_APPS = [
# your apps...
'mcp_server',
]- Add URL patterns:
from django.urls import path, include
urlpatterns = [
# your urls...
path("", include('mcp_server.urls')),
]- Define MCP tools in
mcp.py:
from mcp_server import ModelQueryToolset
from .models import *
class BirdQueryTool(ModelQueryToolset):
model = BirdClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"django_mcp": {
"command": "/path/to/interpreter/python",
"args": [
"/path/to/your/project/manage.py",
"stdio_server"
]
}
}
}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