A lightweight MCP router for FastAPI
Project description
TinyMCP
A lightweight MCP router for FastAPI.
Quick Start
from tinymcp import create_mcp_router, mcp_tool
@mcp_tool(description="Get current time")
def get_time() -> str:
from datetime import datetime
return datetime.now().isoformat()
@mcp_tool(description="Get user data with structured output")
def get_user_data():
return {
"content": [{"type": "text", "text": "User data retrieved"}],
"structured": {"user_id": 123, "email": "user@example.com"}
}
# Add to FastAPI
app.include_router(create_mcp_router(name="My App"))
# Custom prefix (default: "/mcp")
app.include_router(create_mcp_router(name="My App", prefix="/my-mcp"))
Quick Demo
Once you have this repo cloned, from root, run the following (install the missing dev dependencies as required)
uv run python docs/sample_server/simple_fastapi_server.py
Note on Authentication
Authentication has been intentionally left out of TinyMCP to keep it... tiny. Any auth that can be setup with FastAPI in general can be setup with this. However, for MCP server to interact with most MCP clients like cursor, several specific configurations, endpoints etc. are required. If you have an existing OAuth mechanism in your FastAPI server, it is quite easy to make it work for the TinyMCP server as well. See oauth_integration_guide.md for a complete setup guide.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tinymcp-0.1.1.tar.gz.
File metadata
- Download URL: tinymcp-0.1.1.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a1d27f6008683de0a3890cc16a705cd8b51999e4d7a493c2a5874398e57709b
|
|
| MD5 |
bc3781617d00fe7504a0964148729f30
|
|
| BLAKE2b-256 |
5c472597f8cd76089a18523e019c1d3877369241beeadbdb8b730375fc6e07f1
|
File details
Details for the file tinymcp-0.1.1-py3-none-any.whl.
File metadata
- Download URL: tinymcp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26caf392ec8d453ad102945ca653967d5802eec7b48b774052c0cccdead116b6
|
|
| MD5 |
a2acd26c4e83f86cdff1af16abb57044
|
|
| BLAKE2b-256 |
ba26939523f96e973988f1fcb1a146c519976c945fa6d4560ad06d2796ed7ecb
|