{
  "name": "bezal",
  "description": "Search Bezal's verified business directory, get provider details, submit quote requests, and browse categories. Covers 55+ service categories across all US states.",
  "version": "1.0.0",
  "endpoint": "https://app.bezal.ai/api/mcp",
  "transport": "streamable-http",
  "tools": [
    {
      "name": "search_providers",
      "description": "Search Bezal's verified business directory by category, location, or keyword. Returns provider name, category, city, state, rating, review count, phone, and website.",
      "parameters": {
        "category": { "type": "string", "description": "Business category to filter by (e.g. \"plumbing\", \"accounting\")", "required": false },
        "location": { "type": "string", "description": "City name or state (e.g. \"Hartford\", \"Connecticut\", \"CT\")", "required": false },
        "query": { "type": "string", "description": "Free-text search across business name and description", "required": false },
        "limit": { "type": "number", "description": "Number of results to return (1-20, default 5)", "required": false }
      }
    },
    {
      "name": "get_provider_details",
      "description": "Get full details for a specific business provider by its ID.",
      "parameters": {
        "business_id": { "type": "string", "description": "The UUID of the business to look up", "required": true }
      }
    },
    {
      "name": "submit_quote_request",
      "description": "Submit a quote request to a business provider on behalf of a user.",
      "parameters": {
        "business_id": { "type": "string", "description": "The UUID of the business", "required": true },
        "seeker_name": { "type": "string", "description": "Name of the person requesting the quote", "required": true },
        "seeker_email": { "type": "string", "description": "Email address of the requester", "required": true },
        "message": { "type": "string", "description": "Description of what the seeker needs", "required": true }
      }
    },
    {
      "name": "list_categories",
      "description": "List all available business categories in the Bezal directory.",
      "parameters": {}
    }
  ]
}
