{
  "$schema": "https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/server-card.json",
  "serverInfo": {
    "name": "los-clasicos-mcp",
    "title": "Los Clásicos Barbershop MCP Server",
    "version": "1.0.0",
    "description": "MCP Server providing AI agents access to barbershop locations (Conquistadores, La Castellana, Laureles, Houston), service pricing, and academy enrollment."
  },
  "transport": {
    "type": "sse",
    "endpoint": "https://losclasicos.com/api/mcp/sse"
  },
  "capabilities": {
    "tools": [
      {
        "name": "get_locations",
        "description": "Returns details, addresses, phone numbers, and working hours for branches in Medellín (Conquistadores, La Castellana, Laureles) and Houston TX.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "city": {
              "type": "string",
              "enum": ["medellin", "houston", "all"],
              "description": "Filter by city or get all branches."
            }
          }
        }
      },
      {
        "name": "get_services",
        "description": "Lists available grooming services, haircuts, beard trims, and pricing in COP or USD.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "currency": {
              "type": "string",
              "enum": ["COP", "USD"]
            }
          }
        }
      },
      {
        "name": "get_academy_info",
        "description": "Provides information about the Master Barber 1200 Hours program and specialized short courses.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "course_slug": {
              "type": "string",
              "description": "Slug of the course, e.g. master-barber"
            }
          }
        }
      }
    ]
  }
}
