{
  "openapi": "3.1.0",
  "info": {
    "title": "L'Ostricaio Discovery API",
    "version": "1.0.0",
    "description": "Public read-only discovery endpoints for AI agents and answer engines."
  },
  "servers": [
    {
      "url": "https://lostricaio.com"
    }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "summary": "Short AI discovery summary",
        "responses": {
          "200": {
            "description": "Plain text response"
          }
        }
      }
    },
    "/llms-full.txt": {
      "get": {
        "summary": "Extended AI discovery guide",
        "responses": {
          "200": {
            "description": "Plain text response"
          }
        }
      }
    },
    "/.well-known/ai-plugin.json": {
      "get": {
        "summary": "ChatGPT plugin manifest",
        "responses": {
          "200": {
            "description": "JSON manifest"
          }
        }
      }
    },
    "/.well-known/agent.json": {
      "get": {
        "summary": "Generic agent capability manifest",
        "responses": {
          "200": {
            "description": "JSON manifest"
          }
        }
      }
    },
    "/mcp.json": {
      "get": {
        "summary": "MCP configuration document",
        "responses": {
          "200": {
            "description": "JSON configuration"
          }
        }
      }
    }
  }
}
