{
  "schemaVersion": "2025-06-18",
  "name": "magical-waxing-mcp",
  "version": "1.0.0",
  "title": "Magical Waxing MCP Server Card",
  "description": "Model Context Protocol discovery card for Magical Waxing. Exposes read-only tools for location lookup, service pricing, and booking link generation. Backed by static JSON datasets at /data/*.json — no authentication required.",
  "publisher": {
    "name": "Magical Waxing",
    "url": "https://magicalwaxing.com",
    "contact": "hello@magicalwaxing.com"
  },
  "transport": {
    "type": "http",
    "note": "This card describes a planned read-only MCP server. Until the live MCP endpoint is published, agents may use the equivalent static JSON resources listed under `resources` below."
  },
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": false,
    "logging": false
  },
  "tools": [
    {
      "name": "find_nearest_location",
      "description": "Find the closest Magical Waxing location given a city, ZIP, or neighborhood.",
      "inputSchema": {
        "type": "object",
        "properties": { "query": { "type": "string" } },
        "required": ["query"]
      }
    },
    {
      "name": "get_service_pricing",
      "description": "Look up starting price, duration, and category for a service.",
      "inputSchema": {
        "type": "object",
        "properties": { "service": { "type": "string" } },
        "required": ["service"]
      }
    },
    {
      "name": "get_booking_url",
      "description": "Get the canonical online booking URL.",
      "inputSchema": {
        "type": "object",
        "properties": { "service": { "type": "string" } }
      }
    }
  ],
  "resources": [
    {
      "uri": "https://magicalwaxing.com/data/locations.json",
      "name": "All Locations (Schema.org Dataset)",
      "mimeType": "application/json"
    },
    {
      "uri": "https://magicalwaxing.com/data/services.json",
      "name": "All Services (Schema.org Dataset)",
      "mimeType": "application/json"
    },
    {
      "uri": "https://magicalwaxing.com/llms-full.txt",
      "name": "Full Knowledge Base (Markdown)",
      "mimeType": "text/markdown"
    }
  ],
  "documentation": "https://magicalwaxing.com/llms-full.txt"
}
