
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@variflight-ai/tripmatch-mcp
Advanced tools
Variflight Tripmatch MCP Server provides a set of tools to query flight and train information.
To use the Variflight Tripmatch MCP server, you need to have a Variflight API key. You can get it from here.
{
"mcpServers": {
"variflight": {
"command": "npx",
"args": [
"-y",
"@variflight-ai/tripmatch-mcp"
],
"env": {
"VARIFLIGHT_API_KEY": "your_api_key_here"
}
}
}
}
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).
searchFlightsByDepArr({
dep: "PEK", // Departure airport IATA 3-letter code (optional)
depcity: "BJS", // Departure city IATA 3-letter code (optional)
arr: "SHA", // Arrival airport IATA 3-letter code (optional)
arrcity: "SHA", // Arrival city IATA 3-letter code (optional)
date: "2024-03-20" // Flight date in YYYY-MM-DD format
})
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.
searchFlightsByNumber({
fnum: "MU2157", // Flight number including airline code
date: "2024-03-20", // Flight date in YYYY-MM-DD format
dep: "HFE", // Departure airport IATA 3-letter code (optional)
arr: "CAN" // Arrival airport IATA 3-letter code (optional)
})
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.
getFlightAndTrainTransferInfo({
depcity: "BJS", // Departure airport IATA 3-letter code
arrcity: "LAX", // Arrival airport IATA 3-letter code
depdate: "2024-03-20" // Flight date in YYYY-MM-DD format
})
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.
flightHappinessIndex({
fnum: "MU2157", // Flight number including airline code
date: "2024-03-20", // Flight date in YYYY-MM-DD format
dep: "HFE", // Departure airport IATA 3-letter code (optional)
arr: "CAN" // Arrival airport IATA 3-letter code (optional)
})
Get today's date in local timezone (YYYY-MM-DD format). Use this tool whenever you need today's date - NEVER hardcode dates.
getTodayDate({})
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).
getFutureWeatherByAirport({
airport: "PEK" // Airport IATA 3-letter code
})
Search for train tickets between two cities on a specific date. Date must be in YYYY-MM-DD format.
searchTrainTickets({
from: "合肥", // Departure city name
to: "北京", // Arrival city name
date: "2024-03-25" // Travel date in YYYY-MM-DD format
})
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.
getFlightPriceByCities({
dep_city: "HFE", // Departure city IATA 3-letter code
arr_city: "CAN", // Arrival city IATA 3-letter code
dep_date: "2024-03-25" // Departure date in YYYY-MM-DD format
})
Search for train stations by keyword.
searchTrainStations({
query: "北京" // Keyword to search for train stations
})
ISC License - See LICENSE for details.
Variflight (https://ai.variflight.com)
Current version: 0.0.2
FAQs
Variflight Tripmatch MCP Server
The npm package @variflight-ai/tripmatch-mcp receives a total of 7 weekly downloads. As such, @variflight-ai/tripmatch-mcp popularity was classified as not popular.
We found that @variflight-ai/tripmatch-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.