.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/tadata-org/fastapi_mcp
home/mcp-servers/tadata-org/fastapi_mcp
tadata-org avatar

fastapi_mcp

bytadata-org· 1 MCP server

Installs

19M

Stars

12k

Forks

954

Category

Backend & APIs

View on GitHub

TL;DR

</div>

How to install fastapi_mcp?

tadata-org/fastapi_mcp
$git clone https://github.com/tadata-org/fastapi_mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install fastapi_mcp by running `git clone https://github.com/tadata-org/fastapi_mcp`, then use it for the current task and follow its documentation at https://github.com/tadata-org/fastapi_mcp.

Files · 1

View on GitHub
README.md
1<p align="center"><a href="https://github.com/tadata-org/fastapi_mcp"><img src="https://github.com/user-attachments/assets/7e44e98b-a0ba-4aff-a68a-4ffee3a6189c" alt="fastapi-to-mcp" height=100/></a></p>
2 
3<div align="center">
4 <span style="font-size: 0.85em; font-weight: normal;">Built by <a href="https://tadata.com">Tadata</a></span>
5</div>
6 
7<h1 align="center">
8 FastAPI-MCP
9</h1>
10 
11<div align="center">
12<a href="https://trendshift.io/repositories/14064" target="_blank"><img src="https://trendshift.io/api/badge/repositories/14064" alt="tadata-org%2Ffastapi_mcp | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
13</div>
14 
15<p align="center">Expose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!</p>
16<div align="center">
17 
18[![PyPI version](https://img.shields.io/pypi/v/fastapi-mcp?color=%2334D058&label=pypi%20package)](https://pypi.org/project/fastapi-mcp/)
19[![Python Versions](https://img.shields.io/pypi/pyversions/fastapi-mcp.svg)](https://pypi.org/project/fastapi-mcp/)
20[![FastAPI](https://img.shields.io/badge/FastAPI-009485.svg?logo=fastapi&logoColor=white)](#)
21[![CI](https://github.com/tadata-org/fastapi_mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/tadata-org/fastapi_mcp/actions/workflows/ci.yml)
22[![Coverage](https://codecov.io/gh/tadata-org/fastapi_mcp/branch/main/graph/badge.svg)](https://codecov.io/gh/tadata-org/fastapi_mcp)
23 
24</div>
25 
26 
27<p align="center"><a href="https://github.com/tadata-org/fastapi_mcp"><img src="https://github.com/user-attachments/assets/b205adc6-28c0-4e3c-a68b-9c1a80eb7d0c" alt="fastapi-mcp-usage" height="400"/></a></p>
28 
29 
30## Features
31 
32- **Authentication** built in, using your existing FastAPI dependencies!
33 
34- **FastAPI-native:** Not just another OpenAPI -> MCP converter
35 
36- **Zero/Minimal configuration** required - just point it at your FastAPI app and it works
37 
38- **Preserving schemas** of your request models and response models
39 
40- **Preserve documentation** of all your endpoints, just as it is in Swagger
41 
42- **Flexible deployment** - Mount your MCP server to the same app, or deploy separately
43 
44- **ASGI transport** - Uses FastAPI's ASGI interface directly for efficient communication
45 
46 
47## Hosted Solution
48 
49If you prefer a managed hosted solution check out [tadata.com](https://tadata.com).
50 
51## Installation
52 
53We recommend using [uv](https://docs.astral.sh/uv/), a fast Python package installer:
54 
55```bash
56uv add fastapi-mcp
57```
58 
59Alternatively, you can install with pip:
60 
61```bash
62pip install fastapi-mcp
63```
64 
65## Basic Usage
66 
67The simplest way to use FastAPI-MCP is to add an MCP server directly to your FastAPI application:
68 
69```python
70from fastapi import FastAPI
71from fastapi_mcp import FastApiMCP
72 
73app = FastAPI()
74 
75mcp = FastApiMCP(app)
76 
77# Mount the MCP server directly to your FastAPI app
78mcp.mount()
79```
80 
81That's it! Your auto-generated MCP server is now available at `https://app.base.url/mcp`.
82 
83## Documentation, Examples and Advanced Usage
84 
85FastAPI-MCP provides [comprehensive documentation](https://fastapi-mcp.tadata.com/). Additionaly, check out the [examples directory](examples) for code samples demonstrating these features in action.
86 
87## FastAPI-first Approach
88 
89FastAPI-MCP is designed as a native extension of FastAPI, not just a converter that generates MCP tools from your API. This approach offers several key advantages:
90 
91- **Native dependencies**: Secure your MCP endpoints using familiar FastAPI `Depends()` for authentication and authorization
92 
93- **ASGI transport**: Communicates directly with your FastAPI app using its ASGI interface, eliminating the need for HTTP calls from the MCP to your API
94 
95- **Unified infrastructure**: Your FastAPI app doesn't need to run separately from the MCP server (though [separate deployment](https://fastapi-mcp.tadata.com/advanced/deploy#deploying-separately-from-original-fastapi-app) is also supported)
96 
97This design philosophy ensures minimum friction when adding MCP capabilities to your existing FastAPI services.
98 
99 
100## Develo

Preview

tadata-org/fastapi_mcptadata-org/fastapi_mcp
Repotadata-org/fastapi_mcp
TypeMCP Servers
CategoryBackend & APIs
UpdatedNov 2025
LicenseMIT
First seenJul 27, 2026

Tags

MCPaiauthentication

Related

6 picks
Type
  1. ivnvxd avatarmcp-server-odooA Model Context Protocol server for Odoo ERP systemsMCP ServersJul 2026551k349
  2. pantalytics avatarodoo-mcp-proAI connector for Odoo ERP -- connect Claude, ChatGPT, and other AI tools to Odoo via MCP (Model Context Protocol)MCP ServersJul 2026551k65
  3. cap-js avatarmcp-serverModel Context Protocol (MCP) server for AI-assisted development of CAP applications.MCP ServersJul 2026295k105
  4. punitarani avatarfliA Python wrapper for Google Flights APIMCP ServersJul 2026211k3.1k
  5. meilisearch avatarmeilisearch-mcpMCP server for MeilisearchMCP ServersJun 202661k194
  6. sap avatarmdk-mcp-serverModel Context Protocol (MCP) server for AI-assisted development of MDK applications.MCP ServersJul 202634k33