← All WebMCP sites

ticket-booking

demo
Chrome Labs movie ticket booking demo
Run a live auditWe load the site in a real browser and score the tools it gives an agent.

Tools

update_locationactimperative
Updates the user's location.
Input schema
{
  "type": "object",
  "properties": {
    "city": {
      "type": "string",
      "description": "The city to set as the user's location. (e.g. Montpelier, Paris, New York)"
    }
  },
  "required": [
    "city"
  ]
}
query_contentanswerimperative
Filters the movie catalog by a specific genre.
Input schema
{
  "type": "object",
  "properties": {
    "genre": {
      "type": "string",
      "description": "The genre to filter by (e.g., horror, action, comedy)."
    }
  },
  "required": [
    "genre"
  ]
}
select_showtimeactimperative
Selects a movie and a specific showtime to initiate the checkout process.
Input schema
{
  "type": "object",
  "properties": {
    "movie_id": {
      "type": "string",
      "description": "The ID of the movie to select."
    },
    "date": {
      "type": "string",
      "description": "The date of the show in YYYY-MM-DD format (e.g., '2026-08-01').",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "time": {
      "type": "string",
      "description": "The start time of the show in 12-hour format with AM/PM (e.g., '8:30 PM').",
      "pattern": "^[1-12]:[0-5][0-9] (AM|PM)$"
    },
    "tickets": {
      "type": "number",
      "description": "Number of tickets.",
      "default": 1
    }
  },
  "required": [
    "movie_id",
    "date",
    "time"
  ]
}
Listings are sourced from public community registries and shown as reported.