{
  "$schema": "https://modelcontextprotocol.io/schemas/manifest/v1.json",
  "name": "laexcelente-mcp",
  "version": "1.0.0",
  "title": "La Excelente Pizzer\u00eda MCP Server",
  "description": "Official Model Context Protocol server for La Excelente Neapolitan Pizzeria in Providencia, Santiago, Chile. Exposes tools to query menu items, ingredients, prices, opening hours, restaurant location, and generate delivery checkout links via Streamable HTTP.",
  "homepage": "https://laexcelente.cl/developers",
  "repository": "https://laexcelente.cl",
  "transport": {
    "type": "http",
    "url": "https://laexcelente.cl/api/mcp"
  },
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": false
  },
  "tools": [
    {
      "name": "get_menu",
      "description": "Fetch the full menu with categories, items, prices in CLP, and ingredient details for La Excelente.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": [
              "all",
              "antipastos",
              "pizzas_rojas",
              "pizzas_blancas",
              "ensaladas",
              "postres",
              "bebestibles"
            ],
            "description": "Optional category filter"
          }
        }
      }
    },
    {
      "name": "get_restaurant_info",
      "description": "Get restaurant address, phone number, coordinates, schedule, and delivery options for La Excelente.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "check_opening_hours",
      "description": "Check if La Excelente is currently open and retrieve weekly schedule.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_delivery_links",
      "description": "Get ordering links for PedidosYa, Uber Eats, Rappi, and WhatsApp.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "generate_whatsapp_order",
      "description": "Generate a pre-filled WhatsApp ordering URL for La Excelente with selected items.",
      "inputSchema": {
        "type": "object",
        "required": [
          "items",
          "delivery_method"
        ],
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "name",
                "quantity",
                "price_numeric"
              ],
              "properties": {
                "name": {
                  "type": "string"
                },
                "quantity": {
                  "type": "integer"
                },
                "price_numeric": {
                  "type": "integer"
                }
              }
            }
          },
          "delivery_method": {
            "type": "string",
            "enum": [
              "delivery",
              "pickup"
            ]
          },
          "address": {
            "type": "string"
          },
          "notes": {
            "type": "string"
          }
        }
      }
    }
  ]
}