backend2mcp
Automatically transforms Django URL patterns into MCP tools, enabling AI agents to access Django views.
Automatically exposes FastAPI routes as MCP tools, enabling AI agents to invoke API endpoints directly.
Automatically converts Flask routes into MCP tools, allowing AI agents to interact with the Flask application.
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., "@backend2mcpexpose my Flask API as MCP tools"
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.
backend2mcp
Convert any Python web backend into a fully functional MCP (Model Context Protocol) server automatically, with near-zero developer boilerplate.
What is this?
backend2mcp automatically exposes your existing Python web API routes as MCP tools. No HTTP servers, no proxies, no code generation—just import and run.
Related MCP server: Swagger MCP
Installation
Install the core package:
pip install backend2mcpInstall with framework support:
pip install backend2mcp[fastapi] # FastAPI support
pip install backend2mcp[flask] # Flask support
pip install backend2mcp[django] # Django support
pip install backend2mcp[fastapi,flask] # Multiple frameworksQuickstart
FastAPI
from fastapi import FastAPI
from backend2mcp.fastapi import MCPAdapter
app = FastAPI()
@app.get("/users/{id}")
async def get_user(id: int):
return {"id": id, "name": "Satyam"}
MCPAdapter(app).run()Flask
from flask import Flask
from backend2mcp.flask import MCPAdapter
app = Flask(__name__)
@app.route("/users/<int:id>")
def get_user(id):
return {"id": id, "name": "Satyam"}
MCPAdapter(app).run()Django
from django.urls import path
from backend2mcp.django import MCPAdapter
urlpatterns = [
path("users/<int:id>/", views.get_user),
]
MCPAdapter(urlpatterns=urlpatterns).run()CLI Usage
# Auto-detect framework
backend2mcp run app:app
# Explicit framework
backend2mcp run app:app --framework fastapi
backend2mcp run app:app --framework flask
backend2mcp run app:app --framework djangoDecorator Override
Customize tool behavior with @mcp_tool:
from backend2mcp.fastapi import MCPAdapter, mcp_tool
app = FastAPI()
@app.get("/users/{id}")
@mcp_tool(
name="get_user",
description="Get a user by their ID",
hidden=False
)
async def get_user(id: int):
return {"id": id}Tool Naming
Tools are auto-named using a consistent convention:
Route | Tool Name |
|
|
|
|
|
|
|
|
Authentication
backend2mcp provides flexible authentication support through pluggable AuthProvider classes.
No Authentication (Default)
Zero config, no auth required:
adapter = MCPAdapter(app) # Works without authBearer Token Auth
from backend2mcp.core import BearerAuthProvider
auth = BearerAuthProvider(
token_header="Authorization", # Header name
token_prefix="Bearer", # Token prefix
validate_tokens=["secret1", "secr2"] # Optional whitelist
)
adapter = MCPAdapter(app, auth_provider=auth)API Key Auth
from backend2mcp.core import APIKeyAuthProvider
auth = APIKeyAuthProvider(
header_name="X-API-Key", # Header name
query_param="api_key", # Query param name
valid_keys=["key1", "key2"] # Optional whitelist
)
adapter = MCPAdapter(app, auth_provider=auth)Custom Headers Injection
from backend2mcp.core import HeaderInjectionAuthProvider
auth = HeaderInjectionAuthProvider(
static_headers={
"X-Custom-Header": "value",
"Authorization": "Bearer static-token"
}
)
adapter = MCPAdapter(app, auth_provider=auth)Combining Providers
from backend2mcp.core import (
BearerAuthProvider,
APIKeyAuthProvider,
combine_providers
)
auth = combine_providers(
BearerAuthProvider(),
APIKeyAuthProvider()
)
adapter = MCPAdapter(app, auth_provider=auth)Accessing Auth in Handlers
Auth context is injected into handlers:
from backend2mcp.fastapi import MCPAdapter
from backend2mcp.core import BearerAuthProvider, AuthContext
app = FastAPI()
auth = BearerAuthProvider()
@app.get("/users/{id}")
async def get_user(id: int, auth_context: AuthContext = None):
headers = auth_context.headers if auth_context else {}
user = get_user_from_db(id, headers=headers)
return user
adapter = MCPAdapter(app, auth_provider=auth)Architecture
backend2mcp/
├── core/ # Shared implementation
│ ├── adapter.py # BaseAdapter abstract interface
│ ├── auth.py # Auth providers (Bearer, API Key, etc.)
│ ├── server.py # MCP server implementation
│ ├── schema.py # Schema conversion utilities
│ └── exceptions.py # Structured exceptions
├── fastapi/ # FastAPI adapter
├── flask/ # Flask adapter
├── django/ # Django adapter
└── cli/ # Typer CLICore Abstractions
BaseAdapter: Abstract interface all framework adapters implementAuthProvider/AuthContext: Pluggable authentication systemMCPServer: Handles MCP protocol using officialmcpSDKTool Execution: Direct handler invocation (no HTTP calls)
Schema Generation: Pydantic-integrated JSON Schema extraction
Writing a New Adapter
To add support for another framework:
Create
backend2mcp/framework/Implement
BaseAdapterinterface:get_routes()- Extract all routes from the frameworkintrospect_route()- Convert a route toToolInfoexecute_tool()- Call handler with resolved argumentsbuild_tool_name()- Generate MCP-safe tool names
Export
MCPAdapterfrom the subpackage
from backend2mcp.core.adapter import BaseAdapter, ToolInfo
class MCPAdapter(BaseAdapter):
def get_routes(self) -> list[tuple]:
# Your route extraction logic
pass
def introspect_route(self, path, method, handler, config) -> ToolInfo:
# Your schema extraction logic
pass
def execute_tool(self, handler, arguments, context=None):
# Your handler invocation logic
pass
def get_app(self):
# Return underlying framework object
pass
def build_tool_name(self, http_method, path):
# Your naming convention
passRoadmap
Phase | Frameworks |
Phase 1 (this release) | FastAPI, Flask, Django |
Phase 2 | Express, NestJS, Fastify |
Phase 3 | Spring Boot, Quarkus |
Phase 4 | Gin, Fiber, Echo |
License
MIT
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/SatyamSingh8306/backend2mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server