← All WebMCP sites

react-flightsearch

demo
Chrome Labs flight-search demo
Run a live auditWe load the site in a real browser and score the tools it gives an agent.

Tools

searchFlightsanswerimperative
Searches for flights with the given parameters.
Input schema
{
  "type": "object",
  "properties": {
    "origin": {
      "type": "string",
      "description": "City or airport IATA code for the origin. Prefer city IATA codes when a specific airport is not provided. Example: 'RIO' for 'Rio de Janeiro'",
      "pattern": "^[A-Z]{3}$",
      "minLength": 3,
      "maxLength": 3
    },
    "destination": {
      "type": "string",
      "description": "City or airport IATA code for the destination airport. Prefer city IATA codes when a specific airport is not provided. Example: 'RIO' for 'Rio de Janeiro'",
      "pattern": "^[A-Z]{3}$",
      "minLength": 3,
      "maxLength": 3
    },
    "tripType": {
      "type": "string",
      "enum": [
        "one-way",
        "round-trip"
      ],
      "description": "The trip type. Can be \"one-way\" or \"round-trip\"."
    },
    "outboundDate": {
      "type": "string",
      "description": "The outbound date in YYYY-MM-DD format.",
      "format": "date"
    },
    "inboundDate": {
      "type": "string",
      "description": "The inbound date in YYYY-MM-DD format.",
      "format": "date"
    },
    "passengers": {
      "type": "number",
      "description": "The number of passengers."
    }
  },
  "required": [
    "origin",
    "destination",
    "tripType",
    "outboundDate",
    "inboundDate",
    "passengers"
  ]
}
Listings are sourced from public community registries and shown as reported.