MCP Server

Manifest-driven MCP server scaffolder and runtime hub for tool integrations.

Local serverstdioPython

What is the MCP MCP server?

Most developer tooling work still happens through a UI a human drives. MCP MCP server moves it into the conversation instead. Manifest-driven MCP server scaffolder and runtime hub for tool integrations.

The short version

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.

The tools it exposes

The server publishes 10 tools. What each one is for:

  • name — tool_name # REQUIRED
  • Keep — alive for the hub session (one process per bot)
  • Discover — ** git ls-files to enumerate tracked SKILL.md files under each scan root
  • Validate — ** checks required frontmatter fields (name, description)
  • Cache — ** SHA-based cache keyed on prompt content; auto (default) skips re-run if output unchanged, force-refresh always re-runs, read-only never writes
  • Run — ** invokes claude -p as a subprocess, streams output
  • Registry — ** --write-registry persists discovered skills to registry.json; --check detects drift between filesystem and registry without writing
  • Claim — Where it lives
  • SDK — official mcp package, mcp.server.Server
  • env_required — not enforced at scaffold level

What it needs from you

Configuration is passed through the environment: MY_API_KEY, FLEET_HEALTH_SERVER_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

The server ships on PyPI as jaimenbell-mcp-factory, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP's toolset — name, Keep, Discover and 7 more — is a fair guide to whether it matches your workflow. It is maintained by jaimenbell; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
nametool_name # REQUIRED
Keepalive for the hub session (one process per bot)
Discover** git ls-files to enumerate tracked SKILL.md files under each scan root
Validate** checks required frontmatter fields (name, description)
Cache** SHA-based cache keyed on prompt content; auto (default) skips re-run if output unchanged, force-refresh always re-runs, read-only never writes
Run** invokes claude -p <prompt> as a subprocess, streams output
Registry** --write-registry persists discovered skills to registry.json; --check detects drift between filesystem and registry without writing
ClaimWhere it lives
SDKofficial mcp package, mcp.server.Server
env_requirednot enforced at scaffold level

How to install the MCP MCP server

{
  "mcpServers": {
    "factory": {
      "command": "uvx",
      "args": ["jaimenbell-mcp-factory"],
      "env": {
        "MY_API_KEY": "your-value",
        "FLEET_HEALTH_SERVER_PATH": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
MY_API_KEYCredential the server authenticates with.Yes
FLEET_HEALTH_SERVER_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use MCP to name.
  • Use MCP to Keep.
  • Use MCP to Discover.

Frequently asked questions

It connects MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (name, Keep, Discover, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP directly.