{
  "openapi": "3.1.0",
  "info": {
    "title": "Montmetal Public Agent Metadata API",
    "version": "1.0.0",
    "description": "Public metadata and discovery endpoints for Montmetal, an industrial services company offering laser cutting, CNC bending, laser welding, metal processing, sheet metal fabrication, and B2B manufacturing inquiries.",
    "contact": {
      "name": "Montmetal",
      "email": "info@montmetal.hr",
      "url": "https://cnc-lasersko-rezanje.eu"
    },
    "license": {
      "name": "All rights reserved",
      "url": "https://cnc-lasersko-rezanje.eu"
    }
  },
  "servers": [
    {
      "url": "https://cnc-lasersko-rezanje.eu",
      "description": "Montmetal public website"
    }
  ],
  "tags": [
    {
      "name": "discovery",
      "description": "Public AI agent and machine-readable discovery endpoints."
    }
  ],
  "paths": {
    "/health.json": {
      "get": {
        "tags": ["discovery"],
        "summary": "Public service health and contact metadata",
        "operationId": "getHealth",
        "responses": {
          "200": {
            "description": "Service health metadata",
            "content": {
              "application/json": {
                "schema": { "type": "object" }
              }
            }
          }
        }
      }
    },
    "/.well-known/api-catalog": {
      "get": {
        "tags": ["discovery"],
        "summary": "Public API and metadata catalog (RFC 9727 linkset)",
        "operationId": "getApiCatalog",
        "responses": {
          "200": {
            "description": "Linkset of public discovery resources",
            "content": {
              "application/linkset+json": {
                "schema": { "type": "object" }
              }
            }
          }
        }
      }
    },
    "/.well-known/agent-skills/index.json": {
      "get": {
        "tags": ["discovery"],
        "summary": "Agent-readable skill discovery index",
        "operationId": "getAgentSkillsIndex",
        "responses": {
          "200": {
            "description": "Index of agent skills with SHA-256 integrity hashes",
            "content": {
              "application/json": {
                "schema": { "type": "object" }
              }
            }
          }
        }
      }
    },
    "/.well-known/mcp/server-card.json": {
      "get": {
        "tags": ["discovery"],
        "summary": "Model Context Protocol server card",
        "operationId": "getMcpServerCard",
        "responses": {
          "200": {
            "description": "MCP server metadata card",
            "content": {
              "application/json": {
                "schema": { "type": "object" }
              }
            }
          }
        }
      }
    },
    "/auth.md": {
      "get": {
        "tags": ["discovery"],
        "summary": "Agent registration and access guidance (Auth.md)",
        "operationId": "getAuthMd",
        "responses": {
          "200": {
            "description": "Auth.md document describing public discovery and private access contact",
            "content": {
              "text/markdown": {
                "schema": { "type": "string" }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {}
  }
}
