ts-travel-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_flightsC | Search for available flights between two cities. Returns a list of flights sorted by price by default. |
| get_cheapest_flightC | Get the cheapest available flight for a specific route. |
| book_flightB | Book a flight for a passenger. Returns booking confirmation with booking ID. |
| get_flight_detailsC | Get detailed information about a specific flight. |
| get_booking_detailsC | Get details about a specific booking. |
| list_all_bookingsB | List all bookings made in the system. |
| cancel_bookingA | Cancel a booking and release the seat. |
| remove_bookingA | Remove a cancelled booking from the system. This permanently deletes the booking from the list. Only works for bookings that have been cancelled. |
| send_confirmation_emailB | Send a booking confirmation email to the passenger (mock implementation). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Most tools target distinct operations (search, book, cancel, remove, email). However, search_flights and get_cheapest_flight overlap heavily since the latter is essentially a sorted subset of the former, and remove_booking vs cancel_booking could be confused without careful reading. Overall the descriptions help clarify boundaries.
All tool names use consistent snake_case with a verb_noun pattern (search_flights, book_flight, get_booking_details, cancel_booking, remove_booking, send_confirmation_email). No mixed conventions or vague verbs. Very predictable.
9 tools is well-scoped for a flight booking domain. Each tool serves a clear purpose in the search-book-manage lifecycle, with no redundant or filler tools. Count is neither too thin nor bloated.
Core lifecycle is covered: search, cheapest, book, get flight/booking details, list bookings, cancel, remove, and confirm email. Minor gaps include no tool to modify or update an existing booking (e.g. change flight/date) and limited search filtering, but agents can work around these.