Skip to main content
The scaling.cloud MCP server exposes eleven tools today, split into read tools (safe to call freely) and mutation tools (create or change state). Any compliant MCP client will also surface this list at runtime via tools/list with full input schemas — this page is a static overview. All tools are scoped to the caller’s organization, resolved server-side from the OAuth token. You cannot read or write data in another org through this server.

Read tools

Mutation tools

post_incident_update — visibility

post_incident_update requires the caller to commit to a visibility on every call. There is no default — the model must pick.

Errors

Idempotency

Every mutation that creates a new record (create_incident, post_incident_update) accepts an optional idempotencyKey. Acknowledge, resolve, and transition_incident_status are idempotent by nature — retrying them on an incident that is already in the requested state returns success without emitting a duplicate audit event. When you pass an idempotencyKey:
  • A second call with the same key returns the existing record. No duplicate incident, no duplicate update, no duplicate incident.created event.
  • First write wins. If the second call carries a different payload (different title, body, etc.), the original record is returned unchanged and the new arguments are silently ignored. To create a distinct record, supply a different key.
  • Keys are scoped per-organization for incidents, and per-incident for updates. Reuse across orgs is safe.
  • Concurrent retries hitting the same key from two clients at once both resolve to the same winning record — no error returned.
Generate idempotency keys client-side per logical operation, not per call. A natural pattern is a UUID per “the user asked the agent to do X.”

Permissions

Today every connected client gets the same broad scope across all eleven tools. Granular per-tool scopes are tracked separately — until then, revocation (in Settings → Connections) is the only way to limit a client. See the MCP overview for connection management.