{
  "specVersion": "0.1",
  "name": "Mola Mola Tours WebMCP Interface",
  "description": "Web-optimized MCP interface for AI agents to discover and book tours in Lanzarote",
  "endpoint": "https://mm.molamolatours.com/api/v1/mcp/",
  "manifest": {
    "version": "1.0",
    "capabilities": {
      "tools": [
        {
          "name": "search_tours",
          "description": "Search for available tours in Lanzarote",
          "parameters": {
            "type": "object",
            "properties": {
              "query": {"type": "string", "description": "Search query (e.g., dolphin, sunset, whale watching)"},
              "date": {"type": "string", "description": "Date in YYYY-MM-DD format"},
              "limit": {"type": "integer", "default": 10}
            }
          }
        },
        {
          "name": "get_tour_details",
          "description": "Get detailed information about a specific tour",
          "parameters": {
            "type": "object",
            "properties": {
              "tour_id": {"type": "string", "description": "Local tour ID"},
              "checkfront_item_id": {"type": "string", "description": "Checkfront item ID"}
            }
          }
        },
        {
          "name": "get_available_dates",
          "description": "Get available dates for a specific tour",
          "parameters": {
            "type": "object",
            "properties": {
              "tour_id": {"type": "string", "description": "Tour ID"}
            }
          }
        },
        {
          "name": "get_page_content",
          "description": "Retrieve content from a specific page",
          "parameters": {
            "type": "object",
            "properties": {
              "path": {"type": "string", "description": "URL path of the page"}
            }
          }
        },
        {
          "name": "search_website",
          "description": "Search across website content",
          "parameters": {
            "type": "object",
            "properties": {
              "query": {"type": "string", "description": "Search query"},
              "limit": {"type": "integer", "default": 10}
            }
          }
        },
        {
          "name": "get_company_info",
          "description": "Get company information and contact details",
          "parameters": {
            "type": "object",
            "properties": {}
          }
        }
      ]
    }
  },
  "auth": {
    "type": "bearer_token",
    "optional": true
  },
  "website": {
    "name": "Mola Mola Tours",
    "url": "https://mm.molamolatours.com/",
    "description": "Book amazing tours and travel experiences in Lanzarote. Discover ocean adventures, dolphin watching, and unforgettable excursions."
  }
}
