Gazebo
    ServicesAgentsDocsSpecWritingPricing
    Log inSign up
    Log in

    Getting Started

    • Introduction
    • How Gazebo works
    • Core concepts
    • Quickstart

    Agent Access

    • Access profiles
    • Bearer tokens
    • Audit logs

    MCP

    • Overview
    • Cursor
    • Claude Code
    • Windsurf
    • Any MCP client
    • get_credential reference

    Open Standard

    • AIP Specification ↗

    Sharing Agents

    • Overview
    • Publishing an agent
    • The consent screen
    • Installing a shared agent
    • The identity stamp

    REST API

    • Authentication
    • Verification endpoint

    Security

    • Overview
    • Encryption model
    • Credential storage
    • Audit and compliance
    • Responsible disclosure
    Documentation

    Getting Started

    • Introduction
    • How Gazebo works
    • Core concepts
    • Quickstart

    Agent Access

    • Access profiles
    • Bearer tokens
    • Audit logs

    MCP

    • Overview
    • Cursor
    • Claude Code
    • Windsurf
    • Any MCP client
    • get_credential reference

    Open Standard

    • AIP Specification ↗

    Sharing Agents

    • Overview
    • Publishing an agent
    • The consent screen
    • Installing a shared agent
    • The identity stamp

    REST API

    • Authentication
    • Verification endpoint

    Security

    • Overview
    • Encryption model
    • Credential storage
    • Audit and compliance
    • Responsible disclosure
    DocsMCP

    Gazebo exposes an MCP (Model Context Protocol) server that AI tools can connect to for credential retrieval. Any MCP-compatible client — Cursor, Claude Code, Windsurf, or a custom setup — can use the same endpoint.

    Endpoint

    https://app.gazebohq.com/api/mcp
    

    Authentication is via the agent bearer token passed as an Authorization header.

    Available tools

    get_identity

    Returns the calling agent's name and full access policy. Call this first to confirm which services are accessible before fetching credentials. No credentials are returned; nothing is logged.

    get_identity()
    → {
        status: "ok",
        agent_id: "...",
        name: "cursor-dev",
        accessible_services: [
          { service: "stripe", allowed_methods: ["GET", "POST"] },
          { service: "github", allowed_methods: ["GET"] }
        ]
      }
    

    get_credential

    Retrieves the credential for a named service. Requires service and method — the method you declare you intend to use. Every call is logged.

    See the get_credential reference for full documentation.

    list_audit_events

    Returns recent credential access events for the calling agent. Useful for verifying access, debugging denials, or auditing usage.

    list_audit_events({ limit: 10 })
    → {
        status: "ok",
        count: 3,
        events: [
          { service: "stripe", method: "POST", outcome: "success", timestamp: "..." },
          { service: "github", method: "GET", outcome: "denied", timestamp: "..." }
        ]
      }
    

    create_workflow

    Creates a Gazebo workflow to configure an external service — e.g. set up Stripe webhooks, add a Cloudflare DNS record. The workflow is AI-planned, shown to the user in the Gazebo dashboard, and only executed after explicit approval.

    Recommended usage pattern

    1. get_identity()         → confirm which services are accessible
    2. get_credential(...)    → fetch the credential you need
    3. [use the credential]   → make your API call
    4. list_audit_events(...) → optionally verify the access was logged
    

    Client setup

    • Cursor
    • Claude Code
    • Windsurf
    • Any MCP client

    Explore Gazebo

    Gazebo gives each agent an independent access boundary around your agent credentials, with controls for approval, auditing, and revocation.

    Scoped identities for AI agentsGive every agent only the credentials it needs.Credential security and audit controlsSee how access is protected, recorded, and revoked.
    Audit logsCursor
    Gazebo

    IAM for AI agents. Scoped credentials, access policies, and audit trails — without rotating keys.

    Product

    • Pricing
    • Status

    Explore

    • Services
    • Agents
    • Workflows
    • Integrations

    Content

    • Writing
    • Topics
    • Blog
    • Docs

    Free Tools

    • Scanner

    Company

    • About
    • hello@gazebohq.com
    • security@gazebohq.com

    © 2026 Gazebo. All rights reserved.

    PrivacyTermsSecurity