Nbmcp
FreeNot checkedEnables building lightweight MCP servers where Rust handles transport, routing, and schema validation while Python defines tool behavior using type hints, with
About
Enables building lightweight MCP servers where Rust handles transport, routing, and schema validation while Python defines tool behavior using type hints, with support for stdio and HTTP transports.
README
nbmcp is a fast MCP server framework that gives Rust ownership of transport,
routing, and schema validation while Python owns the tool bodies.
- Rust validates incoming tool arguments before Python executes the tool.
- Python defines tool behavior with plain functions and type hints.
- Supports
io,process, andcpuconcurrency modes.
📊 Benchmarks · 🔍 Comparison with FastMCP / Official SDK · 🗺️ Roadmap
Why nbmcp
Most tool servers validate incoming JSON arguments in Python on every request.
nbmcp generates JSON schemas from Python function signatures at decoration time,
then hands those schemas to Rust for validation before Python executes the tool.
Benefits:
- invalid calls are rejected before Python runs
- validation overhead is lower
- the Python tool body only executes after validation succeeds
- blocking I/O in tools still releases the GIL normally
Features
- ✅ Rust-side MCP JSON-RPC transport over stdio
- ✅ HTTP JSON-RPC transport with
/and/jsonrpc - ✅ SSE event stream on
/events - ✅ tool registration via
@mcp.tool(...) - ✅ resource registration via
mcp.resource(...) - ✅ prompt template registration via
mcp.prompt(...) - ✅ runtime discovery with
resources/list,prompts/list,resources/get,prompts/get - ✅ prompt rendering via
prompts/render - ✅ type-hint-driven tool input schema generation
- ✅ Rust validation of tool-call payloads
- ✅
io,process, andcpuconcurrency modes
Installation
Install from PyPI:
python3 -m pip install nbmcp
For local development, install the repository in editable mode (requires a Rust toolchain):
python3 -m pip install -e .
If you want to install a development preview directly from GitHub:
python3 -m pip install git+https://github.com/rum1887/nbmcp.git
Quick start
from nbmcp import Nbmcp
mcp = Nbmcp("weather")
@mcp.tool(description="Get current weather for a city")
def get_weather(city: str, units: str = "celsius") -> dict:
return {"city": city, "temp": 24, "units": units}
if __name__ == "__main__":
mcp.run()
Run the server:
python examples/weather_server.py
Run a client in another shell:
python examples/test_client.py
Usage
Standard stdio server
from nbmcp import Nbmcp
mcp = Nbmcp("weather")
@mcp.tool(description="Get current weather for a city")
def get_weather(city: str, units: str = "celsius") -> dict:
return {"city": city, "temp": 24, "units": units}
if __name__ == "__main__":
mcp.run()
HTTP server
from nbmcp import Nbmcp
mcp = Nbmcp("weather")
@mcp.tool(description="Get current weather for a city")
def get_weather(city: str, units: str = "celsius") -> dict:
return {"city": city, "temp": 24, "units": units}
if __name__ == "__main__":
mcp.run_http("127.0.0.1:8080")
The HTTP server accepts JSON-RPC POST requests on / or /jsonrpc and
exposes a simple SSE stream on /events.
Resources and prompts
from nbmcp import Nbmcp
mcp = Nbmcp("weather")
mcp.resource(
name="city_help",
content="Use the canonical city name and ISO country code when making requests.",
description="Shared documentation for tool callers",
)
mcp.prompt(
name="weather_summary",
template="City: {city}\nUnits: {units}\nProvide a concise weather summary.",
description="Prompt template placeholder for future agent workflows",
)
Clients can then discover runtime assets via:
initializereturnsresourcesandpromptsresources/listandprompts/listresources/getandprompts/getprompts/render
Concurrency modes
@mcp.tool()
def get_weather(city: str) -> dict: ...
@mcp.tool(concurrency="process")
def count_primes(n: int) -> dict: ...
@mcp.tool(concurrency="cpu")
def analyze(data: list) -> dict: ...
io— default mode; best for I/O-bound toolsprocess— worker processes for CPU-bound workcpu— separate interpreter on Python 3.14+, falling back toprocess
Development
Install the repository for local development:
python3 -m pip install -e .
Optional developer dependencies:
python3 -m pip install ruff pytest
Run tests and examples:
cargo test --lib
python examples/test_client.py
python examples/test_concurrency.py
Publishing to PyPI
Build source and wheel distributions:
python3 -m pip install build twine
python3 -m build
Upload to PyPI:
python3 -m twine upload dist/*
If you do not want to publish immediately, install directly from GitHub:
python3 -m pip install git+https://github.com/<user>/nbmcp.git
Packaging notes
nbmcp is configured to build as a native extension with maturin.
If users install from source, a Rust toolchain is required unless prebuilt
wheels are available for their platform.
Project structure
src/— Rust implementation and PyO3 bridgepython/nbmcp/— Python public API and schema generationexamples/— sample server and client scripts
License
MIT
Install Nbmcp in Claude Desktop, Claude Code & Cursor
unyly install nbmcpInstalls 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 nbmcp -- uvx nbmcpFAQ
Is Nbmcp MCP free?
Yes, Nbmcp MCP is free — one-click install via Unyly at no cost.
Does Nbmcp need an API key?
No, Nbmcp runs without API keys or environment variables.
Is Nbmcp hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Nbmcp in Claude Desktop, Claude Code or Cursor?
Open Nbmcp 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 Nbmcp with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
