Skip to main content
Glama
martinoyovo

ts-travel-mcp-server

by martinoyovo

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

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

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 9 tools

Disambiguation4/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness4/5

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.

Maintenance

ActivityInactive
ResponsivenessNo issues