{
  "openapi": "3.1.0",
  "info": {
    "title": "Rocket Alumni Solutions marketing site agent API",
    "version": "1.0.0",
    "description": "Public, unauthenticated endpoints that help agents read Rocket Alumni Solutions marketing content. Versioning is in the URL path: /api/v1/ is current. Breaking changes increment to /api/v2/. Unversioned /api/* aliases resolve to v1. Retired aliases will send Deprecation and Sunset headers, announced in this description and on /developers/. RateLimit and RateLimit-Policy headers advertise a 120-request / 60-second ceiling. This is not a product CMS or device API."
  },
  "servers": [
    {
      "url": "https://www.rocketalumnisolutions.com"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "operationId": "getHomepage",
        "summary": "Homepage HTML or markdown",
        "description": "Returns the marketing homepage. Send Accept: text/markdown for the markdown twin.",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "schema": {
              "type": "string",
              "examples": ["text/html", "text/markdown"]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Homepage representation",
            "headers": {
              "Vary": {
                "schema": {
                  "type": "string",
                  "example": "Accept, Accept-Encoding"
                }
              }
            },
            "content": {
              "text/html": {
                "schema": { "$ref": "#/components/schemas/HtmlDocument" }
              },
              "text/markdown": {
                "schema": { "$ref": "#/components/schemas/MarkdownDocument" }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "operationId": "getLlmsTxt",
        "summary": "Agent index",
        "description": "Markdown index of product, proof, compare, company, and developer URLs.",
        "responses": {
          "200": {
            "description": "llms.txt markdown",
            "content": {
              "text/plain": {
                "schema": { "$ref": "#/components/schemas/MarkdownDocument" }
              }
            }
          }
        }
      }
    },
    "/sitemap.xml": {
      "get": {
        "operationId": "getSitemap",
        "summary": "Indexable URL list",
        "description": "XML sitemap of public marketing URLs.",
        "responses": {
          "200": {
            "description": "XML sitemap",
            "content": {
              "application/xml": {
                "schema": { "$ref": "#/components/schemas/XmlDocument" }
              }
            }
          }
        }
      }
    },
    "/.well-known/mcp": {
      "get": {
        "operationId": "getMcpDiscovery",
        "summary": "MCP discovery handshake",
        "description": "MCP server card for the first-party Streamable HTTP server at POST /mcp.",
        "responses": {
          "200": {
            "description": "MCP server metadata",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/McpManifest" }
              }
            }
          }
        }
      }
    },
    "/mcp": {
      "post": {
        "operationId": "postMcp",
        "summary": "Streamable HTTP MCP endpoint",
        "description": "JSON-RPC 2.0 MCP transport. Tools are read-only marketing facts.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": { "$ref": "#/components/schemas/JsonRpcRequest" }
            }
          }
        },
        "responses": {
          "200": {
            "description": "JSON-RPC result",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/JsonRpcResponse" }
              }
            }
          },
          "202": {
            "description": "Notification accepted"
          },
          "400": {
            "description": "Parse or invalid request",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/JsonRpcResponse" }
              }
            }
          },
          "403": {
            "description": "Origin not allowed",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/Error" }
              }
            }
          }
        }
      },
      "get": {
        "operationId": "getMcpSse",
        "summary": "SSE listen (not offered)",
        "description": "This server does not open an SSE stream. Use POST /mcp.",
        "responses": {
          "405": {
            "description": "This server does not open an SSE stream",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/Error" }
              }
            }
          }
        }
      }
    },
    "/openapi.json": {
      "get": {
        "operationId": "getOpenApi",
        "summary": "This OpenAPI document",
        "description": "Canonical OpenAPI 3.1 description of the public agent endpoints. Also published at /developers/openapi.json.",
        "responses": {
          "200": {
            "description": "OpenAPI 3.1 JSON",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/OpenApiDocument" }
              }
            }
          }
        }
      }
    },
    "/api/v1": {
      "get": {
        "operationId": "getApiCatalog",
        "summary": "Agent API catalog",
        "description": "Lists the read-only marketing JSON endpoints for v1.",
        "responses": {
          "200": {
            "description": "API catalog",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/ApiCatalog" }
              }
            }
          }
        }
      }
    },
    "/api/v1/product": {
      "get": {
        "operationId": "get_product_overview",
        "summary": "Product overview",
        "description": "Rocket Alumni Solutions product description and key facts. Same payload as the MCP tool get_product_overview.",
        "responses": {
          "200": {
            "description": "Product overview",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/ProductOverview" }
              }
            }
          },
          "404": {
            "description": "Unknown API path",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/Error" }
              }
            }
          }
        }
      }
    },
    "/api/v1/pages": {
      "get": {
        "operationId": "list_marketing_pages",
        "summary": "Marketing page list",
        "description": "Public marketing pages with titles and descriptions. Same payload as the MCP tool list_marketing_pages.",
        "responses": {
          "200": {
            "description": "Page catalog",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": { "$ref": "#/components/schemas/MarketingPage" }
                }
              }
            }
          },
          "404": {
            "description": "Unknown API path",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/Error" }
              }
            }
          }
        }
      }
    },
    "/api/v1/contact": {
      "get": {
        "operationId": "get_contact",
        "summary": "Public contact",
        "description": "Support email, phone, and Boston office address. Same payload as the MCP tool get_contact.",
        "responses": {
          "200": {
            "description": "Contact facts",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/Contact" }
              }
            }
          },
          "404": {
            "description": "Unknown API path",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/Error" }
              }
            }
          }
        }
      }
    },
    "/api/v1/links": {
      "get": {
        "operationId": "get_agent_links",
        "summary": "Agent discovery links",
        "description": "llms.txt, sitemap, developers, OpenAPI, and MCP discovery URLs. Same payload as the MCP tool get_agent_links.",
        "responses": {
          "200": {
            "description": "Discovery links",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/AgentLinks" }
              }
            }
          },
          "404": {
            "description": "Unknown API path",
            "content": {
              "application/json": {
                "schema": { "$ref": "#/components/schemas/Error" }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "HtmlDocument": {
        "type": "object",
        "required": ["mediaType", "characterSet", "title", "body"],
        "properties": {
          "mediaType": { "type": "string", "const": "text/html" },
          "characterSet": { "type": "string", "const": "utf-8" },
          "title": { "type": "string" },
          "body": { "type": "string", "minLength": 1 }
        }
      },
      "MarkdownDocument": {
        "type": "object",
        "required": ["mediaType", "characterSet", "title", "body"],
        "properties": {
          "mediaType": { "type": "string", "const": "text/markdown" },
          "characterSet": { "type": "string", "const": "utf-8" },
          "title": { "type": "string" },
          "body": { "type": "string", "minLength": 1 }
        }
      },
      "XmlDocument": {
        "type": "object",
        "required": ["mediaType", "characterSet", "root", "body"],
        "properties": {
          "mediaType": { "type": "string", "const": "application/xml" },
          "characterSet": { "type": "string", "const": "utf-8" },
          "root": { "type": "string" },
          "body": { "type": "string", "minLength": 1 }
        }
      },
      "OpenApiDocument": {
        "type": "object",
        "required": ["openapi", "info", "paths"],
        "properties": {
          "openapi": { "type": "string" },
          "info": {
            "type": "object",
            "required": ["title", "version"],
            "properties": {
              "title": { "type": "string" },
              "version": { "type": "string" },
              "description": { "type": "string" }
            }
          },
          "paths": { "type": "object" }
        }
      },
      "Error": {
        "type": "object",
        "additionalProperties": false,
        "required": ["error", "code", "message", "resolution"],
        "properties": {
          "error": { "type": "string" },
          "code": { "type": "string" },
          "message": { "type": "string" },
          "resolution": { "type": "string" }
        }
      },
      "ProductOverview": {
        "type": "object",
        "additionalProperties": false,
        "required": ["name", "description", "url", "facts"],
        "properties": {
          "name": { "type": "string" },
          "description": { "type": "string" },
          "url": { "type": "string", "format": "uri" },
          "facts": {
            "type": "array",
            "items": { "type": "string" }
          }
        }
      },
      "MarketingPage": {
        "type": "object",
        "additionalProperties": false,
        "required": ["path", "title", "description"],
        "properties": {
          "path": { "type": "string" },
          "title": { "type": "string" },
          "description": { "type": "string" }
        }
      },
      "Contact": {
        "type": "object",
        "additionalProperties": false,
        "required": ["name", "email", "telephone", "address"],
        "properties": {
          "name": { "type": "string" },
          "email": { "type": "string" },
          "telephone": { "type": "string" },
          "address": {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "streetAddress",
              "addressLocality",
              "addressRegion",
              "postalCode",
              "addressCountry"
            ],
            "properties": {
              "streetAddress": { "type": "string" },
              "addressLocality": { "type": "string" },
              "addressRegion": { "type": "string" },
              "postalCode": { "type": "string" },
              "addressCountry": { "type": "string" }
            }
          }
        }
      },
      "AgentLinks": {
        "type": "object",
        "additionalProperties": false,
        "required": [
          "home",
          "llmsTxt",
          "sitemap",
          "developers",
          "openapi",
          "wellKnownMcp",
          "mcp",
          "api"
        ],
        "properties": {
          "home": { "type": "string", "format": "uri" },
          "llmsTxt": { "type": "string", "format": "uri" },
          "sitemap": { "type": "string", "format": "uri" },
          "developers": { "type": "string", "format": "uri" },
          "openapi": { "type": "string", "format": "uri" },
          "wellKnownMcp": { "type": "string", "format": "uri" },
          "mcp": { "type": "string", "format": "uri" },
          "api": { "type": "string", "format": "uri" }
        }
      },
      "ApiCatalog": {
        "type": "object",
        "additionalProperties": false,
        "required": ["name", "description", "links"],
        "properties": {
          "name": { "type": "string" },
          "description": { "type": "string" },
          "links": {
            "type": "object",
            "additionalProperties": { "type": "string" }
          }
        }
      },
      "McpManifest": {
        "type": "object",
        "required": ["name", "description", "version", "serverUrl", "tools"],
        "properties": {
          "name": { "type": "string" },
          "description": { "type": "string" },
          "version": { "type": "string" },
          "serverUrl": { "type": "string", "format": "uri" },
          "tools": {
            "type": "array",
            "items": {
              "type": "object",
              "required": ["name", "description"],
              "properties": {
                "name": { "type": "string" },
                "description": { "type": "string" }
              }
            }
          }
        }
      },
      "JsonRpcRequest": {
        "type": "object",
        "required": ["jsonrpc", "method"],
        "properties": {
          "jsonrpc": { "type": "string", "const": "2.0" },
          "id": {},
          "method": { "type": "string" },
          "params": {
            "type": "object",
            "properties": {
              "protocolVersion": { "type": "string" },
              "capabilities": { "type": "object" },
              "clientInfo": {
                "type": "object",
                "properties": {
                  "name": { "type": "string" },
                  "version": { "type": "string" }
                }
              },
              "name": { "type": "string" },
              "arguments": { "type": "object" }
            }
          }
        }
      },
      "JsonRpcResponse": {
        "type": "object",
        "required": ["jsonrpc"],
        "properties": {
          "jsonrpc": { "type": "string", "const": "2.0" },
          "id": {},
          "result": {},
          "error": {
            "type": "object",
            "properties": {
              "code": { "type": "integer" },
              "message": { "type": "string" }
            }
          }
        }
      }
    }
  }
}
