Skip to main content

foxxe-mcp

Shared MCP plumbing for the FoxxeLabs server fleet. One SDK pin, one bootstrap, thin re-export of the SDK server class — so a spec revision is one commit here, not eleven latent crash-loops.

See docs/PRD-foxxe-mcp.md for why. See docs/migration.md for how to convert a server.

Status: v0.1.0 — library built, fleet unmigrated.

Two shapes

The fleet splits evenly, and the library supports both as first-class.

1. The MCP app is the app (ainm, git-mcp) — use serve() / build_app().

2. MCP is mounted inside a parent app (tomhas's FastAPI dashboard, mnemos's Starlette API) — use mounted_app(), keep your own lifespan and /health:

from foxxe_mcp import MCPServer, mounted_app, version_payload

mcp = MCPServer("tomhas")

@asynccontextmanager
async def lifespan(app):
    async with mcp.session_manager.run():   # same name on both SDK majors
        yield

app = FastAPI(lifespan=lifespan)
app.get("/version")(lambda: version_payload("tomhas"))
app.mount("/", mounted_app(mcp, allowed_host=EXTERNAL_HOST))   # last: routes above win

mounted_app() carries the fix for Starlette stripping the leading / under Mount("/") — plumbing mnemos and tomhas had each written by hand.

The shape

from foxxe_mcp import MCPServer, serve

mcp = MCPServer("tomhas")

@mcp.tool()
def status() -> str:
    """Report the current run state."""
    ...

if __name__ == "__main__":
    serve(mcp)

MCPServer is the SDK's own class, re-exported unwrapped. The tool decorator is the SDK's, reached through the instance — foxxe-mcp never wraps the registration API (PRD NG2), so every SDK feature is available the day it ships.

serve() owns what eleven servers currently hand-roll: transport, bind address, allowed host, /health, /version, logging, graceful shutdown.

Why the name is MCPServer on an SDK that calls it FastMCP

v0.1 pins mcp>=1.29.1,<2, where the class is FastMCP. The export is named MCPServer anyway — that is the mcp 2.x name, and exporting it now means the eventual pin flip changes this library and no server code at all.

That is a claim, so it is tested: scripts/verify_sdk2.py runs the same library against mcp==2.1.1 and checks that MCPServer resolves to the renamed class, that a tool still registers, and that /health, /version and /mcp all still answer. Both majors, one codebase.

$ python scripts/verify_sdk2.py
foxxe-mcp 0.1.0 against mcp 2.1.1
  PASS  SDK major detected as 2 — mcp.server.mcpserver
  PASS  MCPServer resolves to the renamed class
  ...
All checks passed — the v1.0 pin flip is a one-line change.

The bound is enforced twice

Once at install time, in pyproject.toml, and again at boot, in check_sdk(). The second one is not redundant. PRD finding B: rialu declares no mcp at all, only an unbounded fastmcp, and fastmcp 3.x pulls mcp>=2 transitively — a declaration that binds only at install time cannot catch what a resolver did to a transitive dependency. serve() calls check_sdk() before the first tool call, so a wrong resolution fails at boot, next to its cause.

mcp out of range is fatal. fastmcp out of range warns, and is fatal under FOXXE_MCP_STRICT_SDK=1.

Install

foxxe-mcp==0.4.1

Add the fastmcp extra only if the server actually uses the third-party fastmcp package: foxxe-mcp[fastmcp]==0.4.1. Never declare mcp or fastmcp directly in a server again — that is the whole point.

Published to PyPI rather than installed as a git dependency, which is a deliberate amendment to PRD §7. The git-by-tag plan died on contact with the first real deploy: this repo is private, so pip install git+https://... inside a Docker build has no credentials and fails with exit 128. The alternatives were a build-time PAT threaded through eleven Dockerfiles, or making the repo public — which would publish fleet.toml and the internal audit along with it. PyPI keeps the repo private, publishes only the package, and makes every Dockerfile a plain pip install again. NG3 rules out a private index; this is the public one.

Fleet operations

foxxe-herd status              # poll every server's /version — who is on what
foxxe-herd redeploy            # dry run
foxxe-herd redeploy --yes      # fly deploy every migrated server

fleet.toml maps server name to Fly app name (verified against flyer apps_list, not guessed — the -foxxelabs suffix is inconsistent) and records which servers are migrated and which are still unbounded.

Environment

Variable Default Meaning
PORT 8080 Port to bind
BIND_HOST 0.0.0.0 Bind address (Fly requires all interfaces)
ALLOWED_HOST $FLY_APP_NAME.fly.dev Public hostname for DNS-rebinding protection — not the bind address
MCP_TRANSPORT http http or stdio
LOG_LEVEL INFO Root log level
LOG_FORMAT json text for human-readable
MCP_BEARER_TOKENS unset Comma-separated; presence enables bearer auth
FOXXE_MCP_STRICT_SDK unset 1 makes an out-of-range fastmcp fatal
TAISCE_SERVICE_TOKEN unset Service token for taisce_fetch()
SENTINEL_URL unset Presence enables sentinel_push()

Development

python -m venv .venv && .venv/bin/pip install -e '.[dev]'
.venv/bin/python -m pytest

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

foxxe_mcp-0.4.1.tar.gz (23.5 kB view details)

Uploaded Source

Built Distribution

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

foxxe_mcp-0.4.1-py3-none-any.whl (26.1 kB view details)

Uploaded Python 3

File details

Details for the file foxxe_mcp-0.4.1.tar.gz.

File metadata

  • Download URL: foxxe_mcp-0.4.1.tar.gz
  • Upload date:
  • Size: 23.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for foxxe_mcp-0.4.1.tar.gz
Algorithm Hash digest
SHA256 5d07796e17083120c5df11339b4f58e31051434c4d32fd96cd27e0fbfa583193
MD5 983bcce9d8a690a9f47166eac99b18e0
BLAKE2b-256 8f5ccb8d5a46fc20abe555de90b972f3424349bcecc5ae82fd541ed01ead5203

See more details on using hashes here.

File details

Details for the file foxxe_mcp-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: foxxe_mcp-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 26.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for foxxe_mcp-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9830458b4bb1e4e2bf79eb9c94ef16216eef658ac7b68cf7a30440add019b4e4
MD5 0b589b16f1a7593440ceb7d411083d21
BLAKE2b-256 fe6ce7d091dd6f86951ce97983584e51205ea8f610639551f0a1395443a2015e

See more details on using hashes here.

Release history Release notifications | RSS feed

0.5.4

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

This release

0.4.1 This release

2 files

0.3.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page