Skip to main content
Glama
variflight

Variflight Tripmatch MCP Server

Official
by variflight

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

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
searchFlightsByDepArrA

Search for flights between airports or cities by date. For cities with multiple airports, use depcity and arrcity parameters; otherwise use dep and arr parameters. Date must be in YYYY-MM-DD format. For today's date, use the getTodayDate tool. All airport/city codes must be valid IATA 3-letter codes (e.g.BJS for city of Beijing, PEK for Beijing Capital Airport).

searchFlightsByNumberA

Search flights by flight number and date. Flight number should include airline code (e.g. MU2157, CZ3969). dep and arr are optional, keep empty if you don't know them. Date format: YYYY-MM-DD. IMPORTANT: For today's date, you MUST use getTodayDate tool instead of hardcoding any date. Airport codes (optional) should be IATA 3-letter codes.

getFlightAndTrainTransferInfoA

Get flight and train transfer info by departure city and arrival city and departure date. Date format: YYYY-MM-DD. IMPORTANT: For today's date, you MUST use getTodayDate tool instead of hardcoding any date. Airport codes should be IATA 3-letter codes.

flightHappinessIndexC

using this tool when you need information related to following topics: Detailed flight comparisons (punctuality, amenities, cabin specs),Health safety protocols for air travel,Baggage allowance verification,Environmental impact assessments,Aircraft configuration visualization,Comfort-focused trip planning (seat dimensions, entertainment, food). etc.

getTodayDateA

Get today's date in local timezone (YYYY-MM-DD format). Use this tool whenever you need today's date - NEVER hardcode dates.

getFutureWeatherByAirportA

Get airport future weather for 3days (today、tomorrow、the day after tomorrow) by airport IATA 3-letter code. Airport codes should be IATA 3-letter codes (e.g. PEK for Beijing, SHA for Shanghai, CAN for Guangzhou, HFE for Hefei).

searchTrainTicketsC

Search for train tickets between two cities on a specific date. Date must be in YYYY-MM-DD format.

getFlightPriceByCitiesB

Get flight price information by departure city, arrival city, and departure date. All city codes must be valid IATA 3-letter codes (e.g. HFE for Hefei, CAN for Guangzhou). Date must be in YYYY-MM-DD format.

searchTrainStationsC

Search for train stations by keyword.

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 have distinct purposes, such as flight price lookup, flight search by number, and train ticket search, but there is some overlap between getFlightPriceByCities and searchFlightsByDepArr, which both retrieve flight information based on cities and dates, potentially causing confusion. The flightHappinessIndex is broad and could overlap with comfort aspects of other tools, but descriptions help clarify.

Naming Consistency4/5

The naming follows a consistent verb_noun pattern with camelCase, as seen in getFlightPriceByCities and searchFlightsByNumber, with minor deviations like flightHappinessIndex (which lacks a verb prefix) and getTodayDate (which is more direct). Overall, the pattern is readable and mostly uniform.

Tool Count5/5

With 9 tools, the count is well-scoped for a travel and flight information server, covering key areas like flight searches, pricing, transfers, weather, and train services. Each tool serves a specific function without redundancy, making the set efficient and appropriate for the domain.

Completeness4/5

The tool surface covers core travel planning needs, including flight and train searches, pricing, transfers, and weather, with good CRUD-like coverage for information retrieval. Minor gaps exist, such as no explicit tools for booking or updating reservations, but agents can work around this with the provided search and info tools.

Maintenance

ActivityInactive
ResponsivenessNo issues