Skip to main content

Turn any Python codebase into a production-grade MCP server with zero friction.

Project description

image # Smarter-MCP

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 of 42 constantly. Handled silently.
  • MultimodalPIL.Image and np.ndarray parameters decoded from ImageContent automatically. Return images and they're wrapped back up.
  • Instance lifecyclesession, singleton, or per-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

smarter_mcp-0.1.3.tar.gz (242.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

smarter_mcp-0.1.3-py3-none-any.whl (106.7 kB view details)

Uploaded Python 3

File details

Details for the file smarter_mcp-0.1.3.tar.gz.

File metadata

  • Download URL: smarter_mcp-0.1.3.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

Hashes for smarter_mcp-0.1.3.tar.gz
Algorithm Hash digest
SHA256 7ebe70399045b6e612363f9c5c79951713b8969709827720d74292cee8ce7bef
MD5 420928af7b343b1291e01d4425af9b16
BLAKE2b-256 460d0bd7b0c88a61092d04d3937c04e5429aa8b9a9d3637665201e78509fc2d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for smarter_mcp-0.1.3.tar.gz:

Publisher: publish.yml on logic-OT/smarter-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file smarter_mcp-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: smarter_mcp-0.1.3-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

Hashes for smarter_mcp-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b207cd2765f17928a6002285b6c8b62b1ce661fe6386faeade25e0d5d3b60c8a
MD5 8079d5ba64c63b54e929665b06e2a563
BLAKE2b-256 ac31189e16ee50abaea9b02c0c4cb06bd9032d6a1f12a355e845ae0fd4bb9feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for smarter_mcp-0.1.3-py3-none-any.whl:

Publisher: publish.yml on logic-OT/smarter-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page