{
  "openapi": "3.0.3",
  "info": {
    "title": "Quickland Demo Preview API",
    "version": "1.0.0",
    "description": "Create temporary 24-hour demo landing pages. No authentication required."
  },
  "servers": [
    {
      "url": "https://demo.quickland.app"
    }
  ],
  "paths": {
    "/api/mcp": {
      "post": {
        "summary": "MCP endpoint (Streamable HTTP)",
        "description": "Model Context Protocol endpoint. Use the preview_page tool to create demo pages.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "MCP response"
          }
        }
      }
    }
  }
}