Nbmcp
БесплатноНе проверенEnables building lightweight MCP servers where Rust handles transport, routing, and schema validation while Python defines tool behavior using type hints, with
Описание
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
Установка Nbmcp
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/rum1887/nbmcpFAQ
Nbmcp MCP бесплатный?
Да, Nbmcp MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Nbmcp?
Нет, Nbmcp работает без API-ключей и переменных окружения.
Nbmcp — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Nbmcp в Claude Desktop, Claude Code или Cursor?
Открой Nbmcp на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: 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
автор: mcpdotdirectCompare Nbmcp with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
