 {
    "name": "Boom Battle Bar Staging",
    "description": "Book games, check availability, and enquire about private events at Boom Battle Bar.",
    "version": "1.0.0",
    "tools": [
      {
        "name": "list_locations",
        "description": "Returns all Boom Battle Bar venue locations in the UK",
        "inputSchema": {
          "type": "object",
          "properties": {}
        }
      },
      {
        "name": "check_availability",
        "description": "Check real-time availability for games at a specific venue",
        "inputSchema": {
          "type": "object",
          "properties": {
            "venue_id": { "type": "string", "description": "ROLLER venue ID" },
            "date": { "type": "string", "format": "date" },
            "activity_id": { "type": "string" }
          },
          "required": ["venue_id", "date"]
        }
      }
    ],
    "endpoint": {
      "url": "https://mcp.boombattlebar.com/mcp/api/v1",
      "type": "http",
      "authentication": {
        "type": "none"
      }
    }
  }