Skip to main content
Glama

Variflight Tripmatch MCP Server

Official
by variflight

getFlightPriceByCities

Retrieve flight prices between departure and arrival cities using valid IATA codes and a specified departure date in YYYY-MM-DD format. Ideal for travel planning and cost comparisons.

Instructions

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.

Input Schema

NameRequiredDescriptionDefault
arr_cityYesArrival city IATA 3-letter code (e.g. CAN for Guangzhou)
dep_cityYesDeparture city IATA 3-letter code (e.g. HFE for Hefei)
dep_dateYesDeparture date in YYYY-MM-DD format. IMPORTANT: If user input only cotains month and date, you should use getTodayDate tool to get the year. For today's date, use getTodayDate tool instead of hardcoding

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "arr_city": { "description": "Arrival city IATA 3-letter code (e.g. CAN for Guangzhou)", "maxLength": 3, "minLength": 3, "pattern": "^[A-Z]{3}$", "type": "string" }, "dep_city": { "description": "Departure city IATA 3-letter code (e.g. HFE for Hefei)", "maxLength": 3, "minLength": 3, "pattern": "^[A-Z]{3}$", "type": "string" }, "dep_date": { "description": "Departure date in YYYY-MM-DD format. IMPORTANT: If user input only cotains month and date, you should use getTodayDate tool to get the year. For today's date, use getTodayDate tool instead of hardcoding", "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": "string" } }, "required": [ "dep_city", "arr_city", "dep_date" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/variflight/tripmatch-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server