fastapi-mcp-server
Allows AI assistants to inspect FastAPI applications and routers, extracting OpenAPI schemas, registered routes, and backend metadata from local files or live deployments.
Provides tools to extract JSON schemas from Pydantic BaseModel classes and generate TypeScript interfaces and Zod schemas from them.
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., "@fastapi-mcp-serverGenerate TypeScript interfaces from the Pydantic models in main:app"
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.
fastapi-mcp-server
A Model Context Protocol (MCP) server that connects AI coding assistants directly to your FastAPI applications, APIRouters, and Pydantic models.
Functions as a Full-Stack Context Bridge—allowing AI in your IDE to inspect local Python files or live backend deployments, generate 100% accurate TypeScript interfaces and Zod schemas, scaffold typed API clients, and discover backend routes without hallucinations or stale documentation.
Why this exists
When AI assistants write frontend hooks, API clients, or backend tests, they often guess request shapes, parameter names, and route paths based on incomplete file views or outdated training data.
fastapi-mcp-server solves this by giving AI assistants native inspection tools:
Dual-Mode Introspection: Inspects local
.pyfiles directly from disk (no runninguvicornrequired) or fetches live schemas from deployed staging/production URLs (https://api.example.com/openapi.jsonorhttp://localhost:8000/docs).Instant TypeScript & Zod Generation: Converts Pydantic models and OpenAPI schemas into strict, copy-paste ready TypeScript
interfaces and Zod validation schemas with full typing, nullability, and JSDoc comments.Standalone Router & Sub-Module Support: Introspects full applications (
main:app) as well as standaloneAPIRouterfiles (routers.users:router) and factory functions.Project Auto-Discovery: Scans backend repositories using AST analysis to catalog every FastAPI app, router, and Pydantic model automatically.
Cross-Repository Context: Frontend developers working in a separate repository (e.g. Next.js/React) can point their IDE's MCP client to the backend project directory to inspect backend types while writing frontend code.
Related MCP server: FastAPI MCP Server
Installation & Quickstart
Using uvx (Recommended — no installation needed)
uvx fastapi-mcp-serverUsing pip
pip install fastapi-mcp-serverRunning from source
git clone https://github.com/username/fastapi-mcp-server.git
cd fastapi-mcp-server
uv sync
uv run fastapi-mcp-serverEditor & Client Configuration
Zed IDE
Add to your Zed settings.json (Ctrl + , or Cmd + ,):
{
"context_servers": {
"fastapi-mcp-server": {
"command": {
"path": "uvx",
"args": ["fastapi-mcp-server"]
}
}
}
}For local workspace development without publishing:
{
"context_servers": {
"fastapi-mcp-server": {
"command": {
"path": "uv",
"args": [
"run",
"--directory",
"/path/to/fastapi-mcp-server",
"fastapi-mcp-server"
]
}
}
}
}Cursor
Go to Cursor Settings > Features > MCP Servers > + Add New MCP Server:
Name:
fastapi-mcp-serverType:
commandCommand:
uvx fastapi-mcp-server
VS Code (with MCP / Copilot)
Add to your VS Code user or workspace settings (settings.json):
{
"mcp": {
"servers": {
"fastapi-mcp-server": {
"command": "uvx",
"args": ["fastapi-mcp-server"]
}
}
}
}Claude Desktop
Add to your claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"fastapi-mcp-server": {
"command": "uvx",
"args": ["fastapi-mcp-server"]
}
}
}Available MCP Tools
1. get_openapi_schema
Extracts the complete OpenAPI JSON schema from a local FastAPI app, standalone APIRouter, factory function, or live deployed HTTP URL.
app_path(str, required): Import target (e.g."main:app","routers.users:router","src/api.py:app") or live URL ("https://api.example.com/openapi.json","http://localhost:8000/docs").project_dir(str, optional): Path to the backend project root.
2. get_pydantic_schema
Extracts the JSON Schema from any Pydantic BaseModel class (supporting both Pydantic v2 and v1).
model_path(str, required): Import target (e.g."models.user:UserProfile","src/schemas.py:Item").project_dir(str, optional): Path to the backend project root.
3. list_registered_routes
Returns a structured catalog of registered routes, HTTP methods, operation IDs, summaries, and tags from an app, standalone router, or live URL.
app_path(str, required): Target app, router, or URL.project_dir(str, optional): Path to the backend project root.
4. get_typescript_definition
Directly generates strict TypeScript interfaces and types from a Pydantic model, local app, or remote OpenAPI URL.
target(str, required): Model target (e.g."models.user:UserProfile"), app target ("main:app"), or live URL.project_dir(str, optional): Path to the backend project root.
5. get_zod_schema
Generates client-side Zod validation schemas (z.object({...})) and inferred TypeScript types from a Pydantic model or OpenAPI target.
target(str, required): Model target, app target, or live URL.project_dir(str, optional): Path to the backend project root.
6. discover_fastapi_project
Scans a backend project directory using zero-execution AST parsing to catalog all FastAPI instances, APIRouters, and Pydantic models.
project_dir(str, optional): Path to the project directory to scan.
Error Handling
All tools return clean structured JSON dictionaries rather than raising unhandled exceptions or crashing the MCP connection:
{
"error": "ModuleNotFoundError",
"detail": "Failed to import module 'src.main'. Searched in sys.path: [...]"
}Development & Testing
# Clone the repository
git clone https://github.com/username/fastapi-mcp-server.git
cd fastapi-mcp-server
# Install dependencies
uv sync
# Run tests
uv run pytest
# Run type checker and linter
uv run basedpyright
uv run ruff check src testsLicense
MIT License. See LICENSE for details.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceConverts FastAPI application OpenAPI documentation into MCP tools for AI assistants to efficiently query API information. Reduces token consumption by enabling on-demand, structured API queries instead of loading complete OpenAPI specifications.2MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that provides tools for introspecting and analyzing FastAPI applications, including route discovery, model schema extraction, and source code viewing. It enables users to explore API structures, generate documentation, and debug dependency injection hierarchies through natural language.MIT
- FlicenseNot gradedqualityCmaintenanceBrings OpenAPI/Swagger documentation into AI assistants, enabling endpoint discovery, deep inspection, cURL generation, and TypeScript type generation.
- AlicenseNot gradedqualityAmaintenanceEnables AI assistants to generate TypeScript types, Zod schemas, TypeBox, and JSON Schema from any API endpoint or JSON.7MIT
Related MCP Connectors
Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…
Give your AI assistant access to real Helm chart data. No more hallucinated values.yaml files.
Search @imqueue docs and scaffold typed services & clients from your AI coding agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/mantle-bearer/fastapi-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server