Backend2mcp
FreeNot checkedAutomatically converts Python web backends (FastAPI, Flask, Django) into MCP servers by exposing API routes as MCP tools with near-zero boilerplate.
About
Automatically converts Python web backends (FastAPI, Flask, Django) into MCP servers by exposing API routes as MCP tools with near-zero boilerplate.
README
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.
Installation
Install the core package:
pip install backend2mcp
Install 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 frameworks
Quickstart
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 django
Decorator 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 |
|---|---|
GET /users/{id} |
get_by_id |
POST /search |
post_search |
PUT /users/{id} |
put_by_id |
DELETE /users/{id} |
delete_by_id |
Authentication
backend2mcp provides flexible authentication support through pluggable AuthProvider classes.
No Authentication (Default)
Zero config, no auth required:
adapter = MCPAdapter(app) # Works without auth
Bearer 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 CLI
Core Abstractions
BaseAdapter: Abstract interface all framework adapters implementAuthProvider/AuthContext: Pluggable authentication systemMCPServer: Handles MCP protocol using officialmcpSDK- Tool 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
pass
Roadmap
| 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
Install Backend2mcp in Claude Desktop, Claude Code & Cursor
unyly install backend2mcpInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add backend2mcp -- uvx backend2mcpFAQ
Is Backend2mcp MCP free?
Yes, Backend2mcp MCP is free — one-click install via Unyly at no cost.
Does Backend2mcp need an API key?
No, Backend2mcp runs without API keys or environment variables.
Is Backend2mcp hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Backend2mcp in Claude Desktop, Claude Code or Cursor?
Open Backend2mcp on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Backend2mcp with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
