Connect ChangeBook to your agent over MCP

One config block wires your coding agent to ChangeBook over MCP. Pick your client below, copy the block into its config file, and authorize once in the browser. No token to paste and nothing to install on your machine.

It works the same in Claude Code, Cursor, Codex CLI and VS Code with Copilot: the server is one URL for all of them. Once connected, your agent reads your product map, the fragile modules and what broke before, and records each change it makes so the next session starts already knowing.

Claude Code

{
  "mcpServers": {
    "changebook": {
      "type": "http",
      "url": "https://mcp.changebook.app"
    }
  }
}

Cursor

{
  "mcpServers": {
    "changebook": {
      "url": "https://mcp.changebook.app"
    }
  }
}

Codex

[mcp_servers.changebook]
url = "https://mcp.changebook.app"

VS Code

{
  "servers": {
    "changebook": {
      "type": "http",
      "url": "https://mcp.changebook.app"
    }
  }
}