Example workflow

Updated May 06, 2026

A maintainer can load a project-local MCP JSON file into the shared registry:

cat > mcp.json <<'EOF_MCP'
{
  "mcpServers": {
    "hello": {
      "command": "python",
      "args": ["-m", "http.server", "9000"]
    }
  }
}
EOF_MCP
repo-local-tools load

Then the maintainer can install it into a project:

repo-local-tools mcp install hello

After reviewing the generated files, the maintainer can commit only that MCP server:

repo-local-tools mcp commit hello