The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the MCP Factory listing page.
The test count is verifiable below (
python -m pytest tests/→ 348 passed, 8 skipped) and enforced in CI byscripts/check_readme_counts.py, which fails the build if this README's counts drift from the live suite.
From PyPI (registry users):
From a git checkout (contributors): see the python hub_server.py ... examples throughout this README — hub_server.py at the repo root is a backward-compat wrapper around the same mcp_factory.cli module the console script runs, so behavior is identical either way.
The manifest-driven engine behind the MCP Integration Sprint. Write one mcp.yaml for a bot repo and the factory generates the server stub and the ~/.claude.json entry; run the hub and it serves every bot's tools through a single MCP endpoint.
The SDK wrapper is the easy part. What makes an MCP server safe to put in front of a real internal tool — scoped auth/env, fail-soft error handling, validated manifests, a collision-safe registry, and a real test suite — is the engineering this engine is built around. That same production layer is hand-built per engagement; the factory scaffolds it, it doesn't fake it.
This repo is public so you can verify the discipline instead of taking my word for it. Every claim below maps to a file you can open:
| Claim | Where it lives | What to look for |
|---|---|---|
| Validated, env-scoped manifests | mcp_factory/manifest.py | strict from_dict validation (raises on missing/invalid fields); the env_required / env model that scopes which secrets a server may see |
| Fail-soft subprocess proxying | mcp_factory/runtime/subprocess_adapter.py | typed SubprocessError, lazy start, JSON-RPC error surfacing, timeout/OSError-guarded teardown + atexit cleanup — a dead bot returns a clean error, it doesn't crash the hub |
| Collision-safe, manifest-driven registry | mcp_factory/runtime/registry.py · registry.json | CollisionError on duplicate <bot>.<tool> names; the registry is built from manifests, not hand-maintained |
| Tested on a clean checkout | tests/ | 348 passed, 8 skipped, 0 failed (Python 3.12); the 8 skips are real integration tests or lint checks that no-op when the thing they need is absent |
Honesty rails:
348is the real, reproducible count on a clean checkout — the same number the public CI run produces and gates on. mcp-factory generates the scaffold and runs the hub — it does not "generate the production server" or carry any client/CI claims. The hardened production layer (per-tool auth boundaries, the full failure set, two-axis version-pinning) is built per engagement on top of this engine. That applies to both Python scaffold styles below — see "Two Python styles" for exactly what the fastmcp variant does and doesn't add on top of that baseline.
Output always goes to ~/.claude.json.factory-test by default — never to the live ~/.claude.json. Copy entries manually after review.
--scan discovers all projects/*/mcp.yaml files, validates each, and diffs them against the current ~/.claude.json. Default root is C:\path\to\projects. With --apply, a timestamped backup is created at ~/.claude.json.scan-backup-<timestamp> before writing.
Skip logic: manifests whose name already exists in ~/.claude.json are skipped unless --force is passed. This prevents accidentally overwriting manually-crafted entries.
The hub scans all mcp.yaml manifests under each --scan-root at startup, then exposes every bot's tools under the <bot>.<tool> namespace (e.g., fleet-health.fleet_status, my-bot.run_scan). Tools are proxied to per-bot subprocess MCP servers with lazy startup.
Hub meta-tool: _hub.list_bots returns the registered bots and their subprocess status.
Hub is pre-registered in ~/.claude.json as mcp-factory-hub (see scripts/register_hub.py).
Factory generates Node.js stubs when runtime.type: node is set in mcp.yaml:
Generated stubs use @modelcontextprotocol/sdk with stdio transport and zod for argument validation. See examples/node_example.yaml for a working demo.
For runtime.type: python, the factory can scaffold either of two styles from the exact same manifest:
Both styles read the same tools: / env_required: fields and produce a server that speaks the same stdio JSON-RPC wire protocol — the runtime hub's SubprocessAdapter proxies either one without any adapter changes (see tests/test_fastmcp_template.py::TestFastmcpServeSmoke for a live generate-and-call test).
style: raw (python_server.py.j2) | style: fastmcp (python_fastmcp.j2) | |
|---|---|---|
| SDK | official mcp package, mcp.server.Server | fastmcp (pinned exact fastmcp==3.4.2 — 4.0.0b1 is a beta that breaks sampling/roots, do not float) |
| Tool registration | manual @server.list_tools() / @server.call_tool() dispatch | one @mcp.tool(...)-decorated function per tool |
| Arg schema | hand-built JSON Schema dict per arg | Annotated[type, Field(description=...)] on real Python parameters — FastMCP derives the JSON Schema, including required/optional, from the signature |
| Tool body | # TODO: implement stub | same stub, wrapped in try/except Exception — a runtime error in a filled-in implementation returns a structured {"status": "error", ...} instead of crashing the process |
env_required | not enforced at scaffold level | rendered into a _check_required_env() startup check that warns to stderr if a declared var is missing — a presence check, not credential validation |
Gaps, stated honestly: neither style implements per-tool authorization, rate limiting, or the "full failure set" the hub-level subprocess_adapter.py gives you for free (typed errors, lazy start, atexit cleanup) — that's still a per-engagement build on top of either scaffold. The fastmcp template's fail-soft wrapper and env-presence check are new, real code (read mcp_factory/templates/python_fastmcp.j2), not a marketing claim about auth — they were added because FastMCP's decorator model made them cheap to include cleanly; they have not (yet) been backported to the raw template, which is why the two styles differ slightly in what ships out of the box. If your engagement needs FastMCP-specific features beyond this (resources, prompts, HTTP/SSE transport, middleware-based auth), the generated file is a normal FastMCP app — extend it directly.
See examples/fastmcp_example.yaml for a working demo manifest.
runtime.script + existing file → factory references it, skips scaffoldruntime.script + missing file → validation error (use runtime.output for new scaffolds)runtime.output → explicit path for generated stub (absolute recommended)script nor output → error at config-write steptitle and annotationsBoth are optional and both are worth declaring.
title is the human display name, which lets name stay a programmatic
identifier. Display precedence is title → annotations.title → name; the
factory exposes only the top-level title so one manifest cannot declare two
competing display names.
annotations matters more than it looks. The four hints have pessimistic
defaults — destructiveHint and openWorldHint both default to true,
readOnlyHint to false — so a tool that declares nothing is treated by a
careful client as the most dangerous thing it could be. Declaring
readOnlyHint: true on a read-only tool is how you opt out of that. Only the
four hint names above are accepted, each must be a real boolean, and an unknown
key is a hard error rather than a silent drop (the typo readonlyHint would
otherwise leave the tool effectively unannotated on the wire).
Annotations are hints, not a security boundary — the spec is explicit that a client should never make tool-use decisions based on annotations from an untrusted server. They inform a client's UX; they do not enforce anything.
Both fields are emitted by the two Python templates. The Node template does not
render them yet — the repo vendors no node_modules, so an altered call shape
could not be executed in test, and shipping unverified generated code is worse
than shipping the current shape. Declaring them in a node manifest is still
valid and forward-compatible.
Manifest validation is a security gate: it fails closed on anything that could inject code into a generated server. It says nothing about whether the resulting tools are any good. A manifest can be perfectly valid and still produce a server that makes an agent measurably worse.
Every run of factory mode therefore also runs a tool-design lint (Step 2), covering 15 rules across three scopes:
| Scope | Checks |
|---|---|
| manifest | tool-count budget, names colliding once case/separators are ignored, bare generic names that collide across servers |
| tool | empty / thin / filler descriptions, descriptions that only restate the name, non-snake_case and over-long names, missing annotations, unbounded listing tools, annotations that contradict the name |
| arg | undescribed parameters, unqualified parameter names, structured (object/array) parameters with no description and therefore no schema shape |
It is advisory by default — findings print, generation proceeds, exit 0.
--lint-strict makes error-severity findings fatal: it reports them, writes no
scaffold, and exits 3.
Three deliberate properties:
INDETERMINATE, not a clean bill, when it has no discriminating
power — a manifest whose runtime.script exists (the factory references that
hand-written file rather than generating one, so the tool list may not match
the real server), or a runtime with no template. --lint-strict never blocks
on an indeterminate result: the absence of a verdict must not be converted
into one.examples/ are themselves held to the lint by tests/test_examples_lint_clean.py.mcp.yaml at your bot repo root (or in examples/)~/.claude.json.factory-test — confirm the entry looks correct~/.claude.json under mcpServersIf the bot has no existing server, the factory generates a stub at generated/<name>_server.py. Fill in the # TODO: implement sections and set runtime.script to the stub path for future runs.
Subprocess lifecycle:
_hub.list_bots() reports status: idle (not yet started) or runningatexit on hub exit; stop() kills if needed after 5 sTool naming: <bot-name>.<tool-name> — hyphens preserved, dots as separator.
Example: fleet-health.fleet_status, my-bot.get_alerts.
Standalone CLI harness for research workflows, independent of hub_server.py.
workflow_runner.py scans ~/research by default (override with --scan-root) for SKILL.md files containing YAML frontmatter. Each SKILL.md defines a named workflow with metadata:
git ls-files to enumerate tracked SKILL.md files under each scan rootname, description)auto (default) skips re-run if output unchanged, force-refresh always re-runs, read-only never writesclaude -p <prompt> as a subprocess, streams outputoutput_path_template, writes result to vault--write-registry persists discovered skills to registry.json; --check detects drift between filesystem and registry without writingThe examples/fleet_health.yaml manifest references an example server. Running:
confirms the factory produces a matching ~/.claude.json entry.
On a clean checkout (Python 3.12), with pip install -e .[dev]: 348 passed, 8 skipped, 0 failed — the same numbers the public CI run produces and gates on.
The 8 skipped tests skip automatically when the resource or condition they need is absent:
test_integration_fleet_health.py (5 tests) requires a fleet-health server.py on disk (FLEET_HEALTH_SERVER_PATH).test_node_template.py (1 test) requires node and @modelcontextprotocol/sdk (node_modules/) to be present.test_examples_lint_clean.py (2 tests) skips examples/fleet_health.yaml, which references an existing hand-written server — the tool-design lint correctly reports INDETERMINATE there rather than judging code it cannot see, and a skip is the honest way to record that.test_smoke_hub.py (4 tests) no longer needs a live bot fleet to run for real: the hub's demo-manifest fallback (see below) gives it something to discover even against an empty scan root, so these run unconditionally on a clean checkout now.
(On the maintainer's fleet machine, where the fleet-health server and live bots exist, the remaining skipped integration tests run for real and the passed count is higher — but this README claims only what a clean checkout and public CI reproduce.)
The fastmcp-style template tests (test_fastmcp_template.py) are not in this skip list — fastmcp is installed as a [dev] extra, so they run for real on a standard dev setup.
Maintained by Jaimen Bell. For production MCP integrations, custom servers, or agent-reliability work, see jaimenbell.dev.
Building your own MCP server? The MCP Starter Kit has templates, a build playbook, and packaging war-stories from shipping this one.
mcp-name: io.github.jaimenbell/mcp-factory