← All agents
ANTHROPIC

Claude Code + PitchPace

Terminal-based agent by Anthropic. One command registers the PitchPace tenant server; tools appear scoped to your key.

Terminal

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

    Install Claude Code

    Skip if it is already installed.

    Terminal
    npm install -g @anthropic-ai/claude-code
  2. 2

    Register the PitchPace MCP server

    Replace the tenant host and the key with your own values.

    Terminal
    claude mcp add --transport http pitchpace \
      https://<tenant>.pitchpace.app/api/agent/mcp \
      --header "Authorization: Bearer ppag_<key-id>.<secret>"
  3. 3

    Check the connection

    Terminal
    claude mcp list
VERIFY IT WORKS

`claude mcp list` should show pitchpace as connected. Then start `claude` and try the first prompt below — it should call the `list_units` tool.

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