zeromcp
Minimal MCP server implementation in pure Python.
A lightweight, handcrafted implementation of the Model Context Protocol focused on what most users actually need: exposing tools with clean Python type annotations.
Features
- ✨ Zero dependencies - Pure Python, standard library only
- 🎯 Type-safe - Native Python type annotations for everything
- 🚀 Fast - Minimal overhead, maximum performance
- 🛠️ Handcrafted - Written by a human1, verified against the spec
- 🌐 HTTP/SSE transport - Streamable responses
- 📡 Stdio transport - For legacy clients
- 📦 Tiny - Compact codebase with no framework dependency
Installation
pip install zeromcp
Or with uv:
uv add zeromcp
Quick Start
from typing import Annotated
from zeromcp import McpServer
mcp = McpServer("my-server")
@mcp.tool
def greet(
name: Annotated[str, "Name to greet"],
age: Annotated[int | None, "Age of person"] = None
) -> str:
"""Generate a greeting message"""
if age:
return f"Hello, {name}! You are {age} years old."
return f"Hello, {name}!"
if __name__ == "__main__":
mcp.serve("127.0.0.1", 8000)
The optional MCP instructions field tells clients how the server and its features should be used. Clients may add these instructions to the model's system prompt:
mcp = McpServer(
"my-server",
instructions="Use the greet tool when the user asks to greet someone.",
)
Then manually test your MCP server with the inspector:
npx -y @modelcontextprotocol/inspector
Once things are working you can configure the mcp.json:
{
"mcpServers": {
"my-server": {
"type": "http",
"url": "http://127.0.0.1:8000/mcp"
}
}
}
Stdio Transport
For MCP clients that only support stdio transport:
from zeromcp import McpServer
mcp = McpServer("my-server")
@mcp.tool
def greet(name: str) -> str:
"""Generate a greeting"""
return f"Hello, {name}!"
if __name__ == "__main__":
mcp.stdio()
Then configure in mcp.json (different for every client):
{
"mcpServers": {
"my-server": {
"command": "python",
"args": ["path/to/server.py"]
}
}
}
Type Annotations
zeromcp uses native Python Annotated types for schema generation:
from typing import Annotated, Optional, TypedDict, NotRequired
class GreetingResponse(TypedDict):
message: Annotated[str, "Greeting message"]
name: Annotated[str, "Name that was greeted"]
age: Annotated[NotRequired[int], "Age if provided"]
@mcp.tool
def greet(
name: Annotated[str, "Name to greet"],
age: Annotated[Optional[int], "Age of person"] = None
) -> GreetingResponse:
"""Generate a greeting message"""
if age is not None:
return {
"message": f"Hello, {name}! You are {age} years old.",
"name": name,
"age": age
}
return {
"message": f"Hello, {name}!",
"name": name
}
Union Types
Tools can accept multiple input types:
from typing import Annotated, TypedDict
class StructInfo(TypedDict):
name: Annotated[str, "Structure name"]
size: Annotated[int, "Structure size in bytes"]
fields: Annotated[list[str], "List of field names"]
@mcp.tool
def struct_get(
names: Annotated[list[str], "Array of structure names"]
| Annotated[str, "Single structure name"]
) -> list[StructInfo]:
"""Retrieve structure information by names"""
return [
{
"name": name,
"size": 128,
"fields": ["field1", "field2", "field3"]
}
for name in (names if isinstance(names, list) else [names])
]
Error Handling
from zeromcp import McpToolError
@mcp.tool
def divide(
numerator: Annotated[float, "Numerator"],
denominator: Annotated[float, "Denominator"]
) -> float:
"""Divide two numbers"""
if denominator == 0:
raise McpToolError("Division by zero")
return numerator / denominator
Resources
Expose read-only data via URI patterns. Resources are serialized as JSON.
from typing import Annotated
@mcp.resource("file://data.txt")
def read_file() -> dict:
"""Get information about data.txt"""
return {"name": "data.txt", "size": 1024}
@mcp.resource("file://{filename}")
def read_any_file(
filename: Annotated[str, "Name of file to read"]
) -> dict:
"""Get information about any file"""
return {"name": filename, "size": 2048}
Prompts
Expose reusable prompt templates with typed arguments.
from typing import Annotated
@mcp.prompt
def code_review(
code: Annotated[str, "Code to review"],
language: Annotated[str, "Programming language"] = "python"
) -> str:
"""Review code for bugs and improvements"""
return f"Please review this {language} code:\n\n```{language}\n{code}\n```"
Tool annotations
MCP 2025-03-26+ supports tool behavior hints:
@mcp.tool(title="Get System Status", read_only=True, destructive=False, idempotent=True, open_world=False)
def get_status() -> dict:
"""Read current system status"""
return {"ok": True}
Request context
Tools, resources, and prompts can inspect the current MCP request context:
@mcp.tool
def inspect_request() -> dict:
return {
"request_id": mcp.context.request_id,
"meta": mcp.context.meta,
"auth_subject": mcp.context.auth.subject if mcp.context.auth else None,
}
mcp.context.meta contains the request _meta object, including fields such as progressToken.
Async tools
Async tools, resources, prompts, and JSON-RPC methods are supported. HTTP and stdio transports stay synchronous by default; async stdio concurrency is opt-in with await mcp.stdio_async().
import asyncio
@mcp.tool
async def slow_lookup(key: str) -> str:
await asyncio.sleep(1)
return key
Cancellation
Cancellation is supported for async tools, resources, and prompts. ZeroMCP
runs each async request as an asyncio.Task; notifications/cancelled calls
Task.cancel(reason), so the handler receives asyncio.CancelledError at its
next await point. A cancelled call produces no JSON-RPC response, even if the
handler suppresses the exception and returns a value.
@mcp.tool
async def remote_operation() -> str:
operation = asyncio.create_task(start_remote_operation())
try:
return await asyncio.shield(operation)
except asyncio.CancelledError:
await cancel_remote_operation()
try:
await asyncio.shield(operation) # wait for safe remote unwinding
except Exception:
pass
raise
Synchronous handlers are not cancellable. Cancelling an asyncio task cannot
stop a running Python thread or native function safely, so ZeroMCP ignores
cancellation notifications for synchronous handlers rather than pretending to
terminate them. Cancellation follows the callable registered with ZeroMCP: a
synchronous decorator makes a handler synchronous even if it returns a
coroutine. Use an async def wrapper to preserve cancellation support.
The transport must also be able to receive the cancellation notification while
the original request is running. Use await mcp.stdio_async() for stdio;
mcp.stdio() processes one message at a time and therefore cannot receive a
cancellation until after the active request returns. Streamable HTTP and SSE
can receive cancellation concurrently for async handlers.
Cancellations are matched per transport session. Over Streamable HTTP the cancellation notification arrives as a separate POST, so the client must echo the Mcp-Session-Id header from initialize (the spec requires clients to do this). Requests from clients that omit the header cannot be correlated — JSON-RPC ids are only unique within a session, so matching bare ids would let one client cancel another's request — and such cancellations are ignored, which the spec permits.
HTTP sessions
zeromcp assigns an Mcp-Session-Id on every successful Streamable HTTP initialize and remembers the negotiated protocol version for that session. By default the session id is advisory; set mcp.require_streamable_http_session = True to reject non-initialize requests without a valid session (400/404 per spec).
Clients can terminate a session with DELETE /mcp and the Mcp-Session-Id header. Session state is also bounded by mcp.max_http_sessions (default 1024) with least-recently-used eviction; requests with an evicted session id receive 404, and per the spec the client then starts a new session with a fresh initialize. With OAuth configured, unauthenticated requests are rejected before any session is created.
OAuth resource server
zeromcp can act as an MCP OAuth resource server. Token validation is provided by your application:
from zeromcp import McpAuthInfo
@mcp.oauth(
resource="https://mcp.example.com/mcp",
authorization_servers=["https://auth.example.com"],
scopes_supported=["mcp"],
required_scopes=["mcp"],
)
def verify_token(token: str, resource: str) -> McpAuthInfo | None:
if token == "expected":
return McpAuthInfo(
subject="user-123",
scopes=frozenset({"mcp"}),
claims={"sub": "user-123"},
)
return None
When OAuth is configured, HTTP MCP requests require Authorization: Bearer <token>. zeromcp exposes OAuth Protected Resource Metadata at /.well-known/oauth-protected-resource.
When no resource_metadata_url is given, the metadata URL advertised in WWW-Authenticate is inferred from the request's Host header. This works out of the box for direct connections, but behind a reverse proxy you should set resource_metadata_url (and resource) explicitly so the advertised URLs match your public address.
The example server includes a static-token OAuth verifier for local testing:
uv run examples/mcp_example.py --transport http://127.0.0.1:5001 --oauth --oauth-token dev-token --oauth-resource http://127.0.0.1:5001/mcp
It can also validate HS256 JWTs (sub, scope, exp, nbf, and aud claims) using only the standard library — see verify_jwt_hs256 in examples/mcp_example.py:
uv run examples/mcp_example.py --transport http://127.0.0.1:5001 --oauth --oauth-jwt-secret my-secret --oauth-resource http://127.0.0.1:5001/mcp
CORS
By default, zeromcp allows CORS requests from localhost origins (localhost, 127.0.0.1, ::1) on any port. This allows tools like the MCP Inspector or local AI tools to communicate with your MCP server.
from zeromcp import McpServer
mcp = McpServer("my-server")
# Default: allow localhost on any port
mcp.cors_allowed_origins = mcp.cors_localhost
# Allow all origins (use with caution)
mcp.cors_allowed_origins = "*"
# Allow specific origins
mcp.cors_allowed_origins = [
"http://localhost:3000",
"https://myapp.example.com",
]
# Disable CORS (blocks all browser cross-origin requests)
mcp.cors_allowed_origins = None
# Custom logic
mcp.cors_allowed_origins = lambda origin: origin.endswith(".example.com")
Note: CORS only affects browser-based requests. Non-browser clients like curl or MCP desktop apps are unaffected by this setting.
Supported clients
The following clients have been tested:
- Claude Code
- Claude Desktop (stdio only)
- Visual Studio Code
- Roo Code / Cline / Kilo Code
- LM Studio
- Jan
- Gemini CLI
- Cursor
- Windsurf
- Zed (stdio only)
- Warp
Note: generally the /mcp endpoint is preferred, but not all clients support it correctly.
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 zeromcp-1.8.0.tar.gz.
File metadata
- Download URL: zeromcp-1.8.0.tar.gz
- Upload date:
- Size: 99.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
682817c488593ff4ec831f79db06415f2d2ff31db98e58e5fff9d9116c042ff3
|
|
| MD5 |
da6f4ebaca0eddce4cf30b8a0b4c513d
|
|
| BLAKE2b-256 |
30d7606457fc543e5b25f190b1513c3623cbb9683cf27d62be0656ebf2c7b26b
|
File details
Details for the file zeromcp-1.8.0-py3-none-any.whl.
File metadata
- Download URL: zeromcp-1.8.0-py3-none-any.whl
- Upload date:
- Size: 23.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f270a901f0e2327c369509757c455faa1eeb0513e758dbbb25f4923f089f77a
|
|
| MD5 |
54d0ce3b7245dbe19b0138a8a6904d58
|
|
| BLAKE2b-256 |
5bd9f46820d2eca9c4c984348d9a2f39d4e59192cdaaebc12895e92d38a742f6
|