drf-mcp-docs
Generates Angular service code from DRF API documentation for frontend integration.
Generates Axios-based HTTP client code snippets for making API requests.
Generates cURL command examples for API endpoints.
Exposes Django REST Framework API documentation via MCP for AI-driven frontend code generation.
Generates JavaScript code snippets for API calls using various clients.
Generates Python code snippets (using requests or httpx) for API interaction.
Generates React hooks and integration code (fetch/axios) from DRF API documentation.
Supports schema generation from drf-yasg (Swagger) to provide detailed API documentation via MCP.
Generates TypeScript code with full type definitions for API interactions.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@drf-mcp-docsShow me all the product endpoints"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
drf-mcp-docs exposes your Django REST Framework API documentation through the Model Context Protocol (MCP) so AI coding agents can read, understand, and help you write correct frontend integration code.
How is this different from other Django+MCP packages?
Packages like
django-mcp-serveranddjango-rest-framework-mcpexpose DRF actions as MCP tools — the AI agent calls your endpoints directly. drf-mcp-docs is fundamentally different: it exposes API documentation so AI agents can help developers write frontend code (React, Vue, Angular, etc.).Think of it as: drf-spectacular generates docs for humans in a browser → drf-mcp-docs generates docs for AI agents via MCP.
Features
MCP Resources — Browse your API structure: overview, endpoints, schemas, auth methods
MCP Tools — Search endpoints, get detailed docs, generate request/response examples
Code Generation — Generate integration code with real types and docs (JS/TS: fetch, axios, ky — Python: requests, httpx — cURL)
Multi-adapter — Works with drf-spectacular, drf-yasg, or DRF's built-in schema generation
Zero risk — Read-only documentation exposure, no data mutation possible
Two transports — stdio for local AI tools, streamable-http for remote/network access
Quick Start
1. Install
pip install drf-mcp-docsWith a specific schema generator:
pip install drf-mcp-docs[spectacular] # recommended
pip install drf-mcp-docs[yasg]2. Configure
Add to your Django settings:
INSTALLED_APPS = [
# ...
'rest_framework',
'drf_mcp_docs',
]That's it for basic usage. drf-mcp-docs auto-detects your schema generator.
3. Run
stdio transport (for local AI tools like Claude Code, Cursor, etc.):
python manage.py runmcpserver --transport stdioStreamable HTTP transport (for network access):
python manage.py runmcpserver --transport streamable-http --host 0.0.0.0 --port 8100Check configuration (validate settings, adapter, and schema):
python manage.py checkmcpconfig4. Connect your AI tool
Claude Code (~/.claude.json):
{
"mcpServers": {
"my-api-docs": {
"command": "python",
"args": ["manage.py", "runmcpserver", "--transport", "stdio"],
"cwd": "/path/to/your/django/project"
}
}
}Cursor (.cursor/mcp.json):
{
"mcpServers": {
"my-api-docs": {
"command": "python",
"args": ["manage.py", "runmcpserver", "--transport", "stdio"],
"cwd": "/path/to/your/django/project"
}
}
}What AI Agents Can Do
Once connected, your AI coding agent can:
You: "Show me all the product endpoints"
Agent: [reads api://endpoints resource, filters by tag]
You: "Generate a React hook to create a new product"
Agent: [calls get_endpoint_detail for POST /api/products/]
[calls get_request_example for the request body]
[calls generate_code_snippet with typescript + fetch]
→ Generates a complete, typed React hook with correct fieldsAvailable Resources
Resource URI | Description |
| API title, version, base URL, auth summary, tags, endpoint count |
| All endpoints: path, method, summary, tags (compact listing) |
| Full detail for one endpoint |
| All schema/model definitions (names + field summaries) |
| Full schema with properties, types, constraints |
| Authentication guide with all auth methods |
Available Tools
Tool | Parameters | Description |
|
| Search endpoints by keyword |
|
| Full endpoint documentation |
|
| Example request body and parameters |
|
| Example response |
|
| Integration code (JS/TS, Python, cURL) with pagination support |
| — | All data model names and descriptions |
|
| Full schema with all fields and types |
Configuration
All settings are optional. Add a DRF_MCP_DOCS dict to your Django settings:
DRF_MCP_DOCS = {
# Server
'SERVER_NAME': 'my-api', # MCP server name (default: 'drf-mcp-docs')
'SERVER_INSTRUCTIONS': 'Custom prompt...', # Instructions shown to AI agents
# Schema
'SCHEMA_ADAPTER': None, # Auto-detect, or full dotted path
'SCHEMA_PATH_PREFIX': '/api/', # Only include endpoints under this prefix
'EXCLUDE_PATHS': ['/api/internal/'], # Paths to exclude
'CACHE_SCHEMA': not DEBUG, # Cache in production, refresh in dev
'CACHE_TTL': None, # Schema cache TTL in seconds (None = no expiry)
# Transport
'TRANSPORT': 'streamable-http', # Default transport: 'streamable-http' or 'stdio'
'MCP_ENDPOINT': '/mcp/', # URL path for HTTP transport
# Code generation
'DEFAULT_CODE_LANGUAGE': 'javascript', # 'javascript', 'typescript', or 'python'
'DEFAULT_HTTP_CLIENT': 'fetch', # 'fetch', 'axios', 'ky', 'requests', or 'httpx'
}Schema Adapter Selection
drf-mcp-docs auto-detects your schema generator in this priority order:
drf-spectacular (recommended) — most complete OpenAPI 3.x output
drf-yasg — Swagger 2.0 auto-converted to OpenAPI 3.0
DRF built-in — basic fallback with limited schema detail
To force a specific adapter:
DRF_MCP_DOCS = {
'SCHEMA_ADAPTER': 'drf_mcp_docs.adapters.spectacular.SpectacularAdapter',
}ASGI Integration
For projects using ASGI, mount the MCP endpoint alongside your Django app:
# asgi.py
from django.core.asgi import get_asgi_application
from drf_mcp_docs.urls import mount_mcp
django_app = get_asgi_application()
application = mount_mcp(django_app) # Mounts at /mcp/ by defaultWith custom path:
application = mount_mcp(django_app, path="/api-docs-mcp/")Development
git clone https://github.com/Abdulkhalek-1/drf-mcp-docs.git
cd drf-mcp-docs
pip install -e ".[dev]"
pytestHow It Works
┌─────────────┐ ┌──────────────┐ ┌─────────────────┐ ┌───────────┐
│ AI Agent │────>│ MCP Server │────>│ Schema Processor │────>│ Adapter │
│ (Claude, │<────│ (FastMCP) │<────│ (OpenAPI dict │<────│ (spectac- │
│ Cursor...) │ │ │ │ → structured) │ │ ular, │
└─────────────┘ └──────────────┘ └─────────────────┘ │ yasg, │
Resources + Tools Dataclasses + Search │ DRF) │
└───────────┘Adapter pulls the OpenAPI schema from your chosen generator
Processor transforms the raw dict into structured, AI-friendly dataclasses
MCP Server exposes resources (browsable docs) and tools (search, examples, code gen)
AI Agent connects via stdio or HTTP, reads your API docs, helps write frontend code
License
MIT License. See LICENSE for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Abdulkhalek-1/drf-mcp-docs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server