Variflight MCP Server

Official

getFlightTransferInfo

Retrieve flight transfer details by providing departure and arrival airport IATA codes along with departure date in YYYY-MM-DD format. Use the tool to access accurate flight connection information.

Instructions

Get flight 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.

Input Schema

NameRequiredDescriptionDefault
arrcityYesArrival airport IATA 3-letter code (e.g. SHA for Shanghai, LAX for Los Angeles)
depcityYesDeparture airport IATA 3-letter code (e.g. BJS for Beijing, CAN for Guangzhou)
depdateYesFlight 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": { "arrcity": { "description": "Arrival airport IATA 3-letter code (e.g. SHA for Shanghai, LAX for Los Angeles)", "maxLength": 3, "minLength": 3, "pattern": "^[A-Z]{3}$", "type": "string" }, "depcity": { "description": "Departure airport IATA 3-letter code (e.g. BJS for Beijing, CAN for Guangzhou)", "maxLength": 3, "minLength": 3, "pattern": "^[A-Z]{3}$", "type": "string" }, "depdate": { "description": "Flight 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": [ "depdate", "depcity", "arrcity" ], "type": "object" }

You must be authenticated.

Other Tools from Variflight MCP Server

Related Tools

ID: dkmeaje33f