{
  "protocolVersion": "2025-03-26",
  "serverInfo": {
    "name": "next-hvac",
    "title": "Next HVAC",
    "version": "1.0.0"
  },
  "url": "https://www.nexthvacrepair.com/mcp",
  "transport": {
    "type": "streamable-http",
    "endpoint": "https://www.nexthvacrepair.com/mcp"
  },
  "capabilities": {
    "tools": {}
  },
  "tools": [
    {
      "name": "list_services",
      "description": "List HVAC and appliance services offered by Next HVAC in the San Francisco Bay Area.",
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {}
      }
    },
    {
      "name": "list_service_areas",
      "description": "List Bay Area cities and neighborhoods Next HVAC serves.",
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {}
      }
    },
    {
      "name": "get_company_info",
      "description": "Get Next HVAC phone, email, hours, locations, and current offers page URL.",
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {}
      }
    },
    {
      "name": "request_estimate",
      "description": "Submit a free estimate request. Requires the customer's name, phone, email, and a service slug from list_services.",
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "phone",
          "email",
          "service"
        ],
        "properties": {
          "name": {
            "type": "string",
            "description": "Customer full name"
          },
          "phone": {
            "type": "string",
            "description": "Customer phone number"
          },
          "email": {
            "type": "string",
            "description": "Customer email address"
          },
          "service": {
            "type": "string",
            "description": "Service slug such as hvac-repair or ac-installation"
          }
        }
      }
    }
  ]
}