← All WebMCP sites

webmcp-flight-demo

demo
Travel & Eventshttps://webmcp-flight-demo.netlify.app/listed as of 2026-08-01
Flight search & booking demo — imperative and declarative variants
Run a live auditWe load the site in a real browser and score the tools it gives an agent.

Tools

search_flightsanswerimperative
Search for available flights between cities. Returns detailed flight information including airline, price, times, stops, duration, aircraft type, amenities, and seat details.
Input schema
{
  "type": "object",
  "properties": {
    "origin": {
      "type": "string",
      "description": "The origin city for the flight"
    },
    "destination": {
      "type": "string",
      "description": "The destination city for the flight"
    },
    "departureDate": {
      "type": "string",
      "description": "The departure date in YYYY-MM-DD format"
    },
    "returnDate": {
      "type": "string",
      "description": "The return date in YYYY-MM-DD format. Omit for one-way trips."
    },
    "passengers": {
      "type": "number",
      "description": "The number of passengers (1-8)"
    }
  },
  "required": [
    "origin",
    "destination",
    "departureDate",
    "passengers"
  ]
}
Listings are sourced from public community registries and shown as reported.