MCP Catalogs
Home

drf-mcp-docs vs everything

Side-by-side comparison to help you pick between these two MCP servers.

drf-mcp-docs
by Abdulkhalek-1
everything
by modelcontextprotocol
Stars★ 17★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit2 mo agothis month

drf-mcp-docs · Summary

An MCP server that exposes Django REST Framework API documentation to AI coding agents for frontend development assistance.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

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

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 8100

Claude Desktop Configuration

Add to ~/.claude.json:

{
  "mcpServers": {
    "my-api-docs": {
      "command": "python",
      "args": ["manage.py", "runmcpserver", "--transport", "stdio"],
      "cwd": "/path/to/your/django/project"
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.