MCP

Give other AI tools your saved project context.

Fob runs a local stdio MCP server with safe memory and context tools. It can propose approval records, but it does not apply patches, push git, or run shell commands.

Run the server

fob mcp --project /path/to/your-project

Self-test

fob mcp-test "what should another AI know?"

Run this before wiring a client. It verifies the MCP handler and safe tools without editing files or calling Claude/Codex.

Claude Code

claude mcp add fob --scope local -- fob mcp --project /path/to/your-project

JSON clients

{
  "mcpServers": {
    "fob": {
      "command": "node",
      "args": [
        "/path/to/fob/bin/fob.js",
        "mcp",
        "--project",
        "/path/to/your-project"
      ]
    }
  }
}

Tools