Skip to main content

Install ChangePilot in your connected agent

Use ChangePilot from Claude Code, Claude Desktop, Cursor, or any MCP-capable agent.

Recommended · 30 seconds

Just ask your agent to install it

Open Claude Code, Cursor chat, or Claude Desktop and paste this instruction:

Install the ChangePilot MCP server. The install manifest is at https://changepilot.deltamarksystems.com/api/install-mcp — fetch it, pick the entry for my client, run the install, and then verify by listing my pending actions.

Your agent will fetch the install manifest, ask you to approve the install command (you stay in control), execute it, then call ChangePilot to confirm everything works. No terminal needed.

What ChangePilot will be able to do

  • Plan changes — turn the work you describe into structured projects + tasks
  • Search past work — find similar projects, vendor history, outcomes
  • Attach evidence — link URLs and files to projects
  • Propose changes you still approve them in-app (status updates, comments, due-date changes)

Anonymous tier requires no signup (1 call/min, enough to verify). Sign up for free to upgrade to 10 calls/min and persist your work.

Prefer to do it yourself? Manual install per client

Claude Code (recommended)
claude mcp add --transport http changepilot https://changepilot.deltamarksystems.com/api/mcp/v1

Stored in ~/.claude.json. Restart your Claude Code session to pick up the new server.

Cursor

Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):

{
  "mcpServers": {
    "changepilot": {
      "url": "https://changepilot.deltamarksystems.com/api/mcp/v1",
      "type": "http"
    }
  }
}

Restart Cursor to pick up the new server.

Claude Desktop (via mcp-remote bridge)

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "changepilot": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://changepilot.deltamarksystems.com/api/mcp/v1"]
    }
  }
}

Config file location: macOS ~/Library/Application Support/Claude/, Windows %APPDATA%/Claude/. Restart Claude Desktop.

Any other MCP client (raw HTTP)

Transport: http. URL: https://changepilot.deltamarksystems.com/api/mcp/v1. Get an anonymous bearer token via:

curl -X POST https://changepilot.deltamarksystems.com/api/mcp/v1/auth \
  -H "Content-Type: application/json" \
  -d '{"tier":"anon","agent_id":"my-agent"}'

Try these prompts first

  • Show me my pending ChangePilot actions
  • Plan a change: replace the cooling tower on building B next month
  • Find similar projects to pump P-101A overhaul — what did past teams do?
  • Summarize what's overdue across my ChangePilot projects
For agents (machine-readable)
For humans