Turn any Python codebase into a production-grade MCP server with zero friction.
Project description
The highest-level Python framework for building, generating, and running MCP servers.
If Python can call it, Smarter-MCP can serve it.
pip install smarter-mcp
Smarter-MCP sits on top of FastMCP and acts as the orchestration layer that handles everything a developer shouldn't have to think about:
Three ways in, one runtime
1. Existing code — zero rewrites
Point at any module you already have (or anything on PyPI):
import pandas as pd
from smarter_mcp import SmarterMCP
app = SmarterMCP("data-tools")
app.discover_module(pd.DataFrame, include=["describe", "head", "tail"])
app.run()
Or scan an entire local codebase from the CLI:
smarter-mcp serve ./src/mylib
The dual-pass engine (AST + inspect) reads your signatures, builds JSON schemas, and serves them. Nothing to rewrite.
2. Stateful class tools
When your tools need shared state (a DB connection, an API client, an ML model loaded once), @toolkit manages it:
from smarter_mcp import tool, toolkit
@toolkit(lifecycle="session")
class DatabaseClient:
def __init__(self, host: str = "localhost", port: int = 5432):
self.conn = connect(host, port)
@tool(name="run_query")
def query(self, sql: str) -> list[dict]:
"""Execute a SQL query and return results."""
return self.conn.execute(sql).fetchall()
One instance per session. Constructor args injected from config. Session instances are evicted via bounded LRU (max 256 entries) with best-effort resource cleanup (close()/__exit__) on eviction. You write the class, Smarter-MCP handles the plumbing.
3. ✍️ Fresh tools from scratch
from smarter_mcp import SmarterMCP, tool, resource
app = SmarterMCP("my-server")
@tool("Greet a user by name")
def greet(name: str) -> str:
return f"Hello, {name}!"
@resource("config://settings")
def get_settings() -> dict:
return {"debug": True, "version": "1.0"}
app.run()
⚙️ What the runtime gives every tool
Regardless of how a tool was registered, every call goes through:
- ✅ Schema validation — parameters validated before your function is called. Clean errors back to the agent, not raw tracebacks.
- ✅ Type coercion — agents send
"42"instead of42constantly. Handled silently. - ✅ Multimodal —
PIL.Imageandnp.ndarrayparameters decoded fromImageContentautomatically. Return images and they're wrapped back up. - ✅ Instance lifecycle —
session,singleton, orper-call. Resolved and bound per request. - ✅ Namespace routing — auto-derived from module paths. No silent name collisions.
- ✅ Auth + rate limiting — API key middleware and sliding-window rate limits, config-driven.
✨ AI-generated tool descriptions
Most Python code in the wild has no docstrings. That's fine.
Point Smarter-MCP at an undocumented library and it will write the tool descriptions for you using Claude, GPT, or any OpenAI-compatible model. Every tool your agent sees gets a clean, accurate description regardless of what the original code looked like.
llm:
enabled: true
provider: anthropic # or openai, openrouter
model: claude-3-5-haiku-20241022
cache_path: .smarter-mcp/description-cache.json
or in code:
server = SmarterMCP(
"my-server",
llm_enabled=True,
llm_provider="anthropic",
llm_model="claude-3-5-haiku-20241022",
)
server.run()
Undocumented code stops being a blocker.
📋 YAML manifest — no Python required
name: my-server
version: 0.1.0
server:
host: 0.0.0.0
port: 8000
transport: sse
sources:
- path: ./src/my_local_utils
- module: random
include: [choices, randint]
namespace: random_tools
expose:
include_private: false
unannotated_policy: warn
smarter-mcp serve --manifest smarter-mcp.yaml
🚀 Getting started
pip install smarter-mcp
For multimodal support (PIL / numpy):
pip install "smarter-mcp[multimodal]"
Then point it at your code:
smarter-mcp serve ./src/mylib --port 8000
smarter-mcp validate ./my_tools.py
smarter-mcp test ./my_tools.py
Built on FastMCP.
Project details
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 smarter_mcp-0.1.4.tar.gz.
File metadata
- Download URL: smarter_mcp-0.1.4.tar.gz
- Upload date:
- Size: 242.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5af58a6f00c35e907cacfa75a8f821f30db0205747a2cfecb65bf0c064d79834
|
|
| MD5 |
b46bd130968105783cdd91379e40edf1
|
|
| BLAKE2b-256 |
4bc7d98b93c1fe8ef6618db881b84c0ce60b2ec993275aa9880402be7c4518cf
|
Provenance
The following attestation bundles were made for smarter_mcp-0.1.4.tar.gz:
Publisher:
publish.yml on logic-OT/smarter-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
smarter_mcp-0.1.4.tar.gz -
Subject digest:
5af58a6f00c35e907cacfa75a8f821f30db0205747a2cfecb65bf0c064d79834 - Sigstore transparency entry: 1806598530
- Sigstore integration time:
-
Permalink:
logic-OT/smarter-mcp@890d03ba702bf655ae6ce61f4ac8c5854a984940 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/logic-OT
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@890d03ba702bf655ae6ce61f4ac8c5854a984940 -
Trigger Event:
push
-
Statement type:
File details
Details for the file smarter_mcp-0.1.4-py3-none-any.whl.
File metadata
- Download URL: smarter_mcp-0.1.4-py3-none-any.whl
- Upload date:
- Size: 106.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c57fca6d5f3110270a1dacce44fd605a7ce56f19d28e34af3ebd7e546b3a3a6a
|
|
| MD5 |
4854835c9ae056d69b6c665490cb2aeb
|
|
| BLAKE2b-256 |
be108fd7305b6eb532a7ac2eba573dce247d6c72408dc895d69c28cc251efc58
|
Provenance
The following attestation bundles were made for smarter_mcp-0.1.4-py3-none-any.whl:
Publisher:
publish.yml on logic-OT/smarter-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
smarter_mcp-0.1.4-py3-none-any.whl -
Subject digest:
c57fca6d5f3110270a1dacce44fd605a7ce56f19d28e34af3ebd7e546b3a3a6a - Sigstore transparency entry: 1806598541
- Sigstore integration time:
-
Permalink:
logic-OT/smarter-mcp@890d03ba702bf655ae6ce61f4ac8c5854a984940 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/logic-OT
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@890d03ba702bf655ae6ce61f4ac8c5854a984940 -
Trigger Event:
push
-
Statement type: