{
  "openapi": "3.1.0",
  "info": {
    "title": "Grand Bounce public discovery resources",
    "version": "1.0.0",
    "description": "Machine discovery endpoints and the authenticated, read-only Grand Bounce inflatable catalog MCP server. Grand Bounce does not provide a public booking API."
  },
  "servers": [{ "url": "https://www.grandbounce.com" }],
  "paths": {
    "/llms.txt": {
      "get": {
        "summary": "Get Grand Bounce agent guidance",
        "responses": { "200": { "description": "Plain-text agent guidance" } }
      }
    },
    "/robots.txt": {
      "get": {
        "summary": "Get Grand Bounce crawler rules",
        "responses": { "200": { "description": "Robots exclusion rules" } }
      }
    },
    "/sitemap.xml": {
      "get": {
        "summary": "Get the Grand Bounce XML sitemap",
        "responses": { "200": { "description": "Indexable public URLs" } }
      }
    },
    "/api/mcp/inflatables": {
      "get": {
        "summary": "Describe the Grand Bounce inflatable MCP server",
        "security": [{ "bearerAuth": [] }],
        "responses": {
          "200": { "description": "MCP server and tool metadata" },
          "401": { "description": "Missing or invalid bearer token" }
        }
      },
      "post": {
        "summary": "Send an MCP JSON-RPC request",
        "description": "Supports initialize, notifications/initialized, tools/list, and tools/call for list_inflatables and get_inflatable using MCP protocol version 2024-11-05.",
        "security": [{ "bearerAuth": [] }],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": ["jsonrpc", "method"],
                "properties": {
                  "jsonrpc": { "type": "string", "const": "2.0" },
                  "id": { "type": ["string", "number", "null"] },
                  "method": {
                    "type": "string",
                    "enum": ["initialize", "notifications/initialized", "tools/list", "tools/call"]
                  },
                  "params": { "type": "object" }
                }
              }
            }
          }
        },
        "responses": {
          "200": { "description": "MCP JSON-RPC response" },
          "202": { "description": "Initialized notification accepted" },
          "400": { "description": "Invalid JSON, JSON-RPC request, or tool arguments" },
          "401": { "description": "Missing or invalid bearer token" },
          "404": { "description": "Unsupported JSON-RPC method" }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "bearerAuth": { "type": "http", "scheme": "bearer" }
    }
  }
}
