{
  "version": "1.1",
  "name": "BrewLoop",
  "description": "Craft brewery discovery platform covering nearly 6,000 breweries across all 50 US states, with deep Texas coverage.",
  "url": "https://brewloop.io",
  "ai_policy": {
    "allow_crawling": true,
    "allow_training": true,
    "allow_citation": true,
    "allow_autonomous_agents": true,
    "preferred_citation": "BrewLoop (texasbrewloop.com)"
  },
  "data_access": {
    "llms_txt": "https://brewloop.io/llms.txt",
    "llms_full_txt": "https://brewloop.io/llms-full.txt",
    "agent_instructions": "https://brewloop.io/agents.md",
    "agent_card": "https://brewloop.io/.well-known/agent-card.json",
    "api_documentation": "https://brewloop.io/for-agents",
    "openapi_spec": "https://brewloop.io/api/v1/openapi.json",
    "a2a_endpoint": "https://brewloop.io/api/a2a",
    "mcp_server": "https://brewloop.io/api/mcp",
    "mcp_sse": "https://brewloop.io/api/mcp/sse",
    "mcp_manifest": "https://brewloop.io/.well-known/mcp.json",
    "api_root": "https://brewloop.io/api/v1",
    "sitemap": "https://brewloop.io/sitemap.xml",
    "robots": "https://brewloop.io/robots.txt"
  },
  "tasks": [
    {
      "name": "find_breweries",
      "description": "Search breweries by location, amenities, or name",
      "endpoint": "/api/v1/breweries",
      "example": "/api/v1/breweries?region=Austin&dog_friendly=true"
    },
    {
      "name": "plan_trip",
      "description": "Find breweries near a location for trip planning",
      "endpoint": "/api/v1/plan/nearby",
      "example": "/api/v1/plan/nearby?lat=30.27&lng=-97.74"
    },
    {
      "name": "get_recommendation",
      "description": "Get a personalized loop recommendation based on constraints",
      "endpoint": "/api/v1/decide/loop",
      "example": "/api/v1/decide/loop?duration=1&dogs=true"
    },
    {
      "name": "check_open_now",
      "description": "Check if a brewery is currently open (is_open_now field)",
      "endpoint": "/api/v1/breweries/{slug}",
      "example": "/api/v1/breweries/jester-king-brewery"
    },
    {
      "name": "find_ev_charging",
      "description": "Find EV charging stations near a brewery",
      "endpoint": "/breweries/{slug}/nearby/ev_charging",
      "example": "/breweries/jester-king-brewery/nearby/ev_charging"
    },
    {
      "name": "browse_loops",
      "description": "Browse curated road trip loops with decision surfaces",
      "endpoint": "/api/v1/loops",
      "example": "/api/v1/loops?decision_surface=true&dog_friendly=true"
    },
    {
      "name": "find_event_breweries",
      "description": "Find breweries near major events (World Cup, SXSW, etc.)",
      "endpoint": "/api/event-loops",
      "example": "/api/event-loops?upcoming=true"
    },
    {
      "name": "find_attraction_breweries",
      "description": "Find breweries near 48 Texas attractions (stadiums, parks, landmarks, museums) across DFW, Houston, Austin, San Antonio",
      "endpoint": "/guides/attractions/{slug}",
      "example": "/guides/attractions/space-center-houston"
    },
    {
      "name": "best_breweries_in_texas",
      "description": "Statewide ranking of the best craft breweries across all Texas regions with amenity comparison, region breakdown, and FAQ",
      "endpoint": "/best-breweries-in-texas",
      "example": "/best-breweries-in-texas"
    },
    {
      "name": "best_breweries_in_city",
      "description": "Curated, ranked brewery lists for 17 Texas cities with comparison tables and amenity breakdowns",
      "endpoint": "/best-breweries-in/{city-slug}",
      "example": "/best-breweries-in/austin"
    },
    {
      "name": "brewery_bbq_pairings",
      "description": "Brewery + BBQ pairings ranked by distance with walkability, drive times, and BBQ crawl hubs. Regions: dfw, austin, san-antonio, houston, hill-country, gulf-coast, east-texas, west-texas",
      "endpoint": "/beer-and-bbq/{region}",
      "example": "/beer-and-bbq/dfw"
    },
    {
      "name": "brewery_ev_charging",
      "description": "Breweries with EV charging stations nearby — charger network, distance, drive time. Regions: dfw, austin, san-antonio, houston, hill-country, gulf-coast, east-texas, west-texas, panhandle",
      "endpoint": "/breweries-ev-charging/{region}",
      "example": "/breweries-ev-charging/austin"
    },
    {
      "name": "brewery_hotel_pairings",
      "description": "Breweries within walking distance of hotels — perfect for brewery weekends. Regions: dfw, austin, san-antonio, houston, hill-country, gulf-coast, east-texas, west-texas, panhandle",
      "endpoint": "/breweries-near-hotels/{region}",
      "example": "/breweries-near-hotels/dfw"
    }
  ],
  "api": {
    "base_url": "https://brewloop.io/api/v1",
    "authentication": "none",
    "rate_limit": "60 requests per minute",
    "endpoints": [
      {
        "path": "/breweries",
        "method": "GET",
        "description": "List all breweries with filtering"
      },
      {
        "path": "/breweries/{slug}",
        "method": "GET",
        "description": "Get brewery details with is_open_now status"
      },
      {
        "path": "/loops",
        "method": "GET",
        "description": "List curated brewery loops"
      },
      {
        "path": "/loops/{slug}",
        "method": "GET",
        "description": "Get loop with itinerary"
      },
      {
        "path": "/events",
        "method": "GET",
        "description": "List brewery events"
      },
      {
        "path": "/plan/weekend",
        "method": "GET",
        "description": "Weekend trip suggestions"
      },
      {
        "path": "/plan/nearby",
        "method": "GET",
        "description": "Find breweries near a location"
      },
      {
        "path": "/decide/loop",
        "method": "GET",
        "description": "Loop recommendation engine"
      },
      {
        "path": "/regions",
        "method": "GET",
        "description": "Browse breweries by Texas region"
      },
      {
        "path": "/regions/{slug}",
        "method": "GET",
        "description": "Region detail with breweries, loops, events"
      }
    ]
  },
  "contact": {
    "website": "https://brewloop.io"
  }
}