← All agents
CURSOR

Cursor + PitchPace

AI-first IDE built on VS Code. A project-level mcp.json makes the PitchPace tools available to its agent.

IDE

Before you start

  • A PitchPace tenant — your park on <tenant>.pitchpace.app. Replace <tenant> everywhere below.
  • An agent key (ppag_…) with the scopes you need — request one if you don’t have it yet. It is a secret: keep it out of repos and URLs.
QUICK START
  1. 1

    Add the server config

    Project-level: .cursor/mcp.json in the repo. Global: ~/.cursor/mcp.json. Keep project-level files with real keys out of version control.

    .cursor/mcp.json
    {
      "mcpServers": {
        "pitchpace": {
          "url": "https://<tenant>.pitchpace.app/api/agent/mcp",
          "headers": { "Authorization": "Bearer ppag_<key-id>.<secret>" }
        }
      }
    }
  2. 2

    Enable it

    Cursor Settings → MCP — pitchpace should list its tools with a green status.

VERIFY IT WORKS

Cursor Settings → MCP shows pitchpace with its five tools. In Agent chat, try the first prompt below.

List my PitchPace unit types and this week’s per-day occupancy.

Writes are opt-in: set_occupancy exists only on keys with occupancy:write, and what it writes lowers your public availability immediately — start read-only if you are unsure.

EXAMPLE PROMPTS
List my unit types and this week’s occupancy per day.
Sync my PMS export: set 14 of my 20 pitches occupied for 1–15 August, note "OTA sales".
Which days in August still have at least 5 pitches available?
Read my price grid and list every band with a minimum stay under 3 nights.
REFERENCE