Flight price comparison MCP server. Search multiple booking sources to find better flight prices.
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-simonenavifare-navifare-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Flight price comparison MCP server. Search multiple booking sources to find better flight prices.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
A command line tool for setting up commercetools MCP server
Rent GPUs, robots, drones, and construction gear on RIGShare; also onboards equipment owners.
35+ AI tools for TCG card grading, Monte Carlo pricing, 370K+ product search. BYOK.
Read-only merchant data from 8 Chinese e-commerce platforms: orders, products, after-sales, ads
MCP Security Weekly
Get CVE alerts and security updates for io.github.simonenavifare/navifare-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Version: 0.1.5
Navifare finds a better price for a specific flight the user already found. Users should provide flight details conversationally, which will be structured into the required format.
This MCP server wraps the Navifare REST API as MCP tools for flight price comparison. It enables AI assistants like Claude to help users find better prices for flights they've already discovered.
https://mcp.navifare.com/mcphttps://www.navifare.com/mcp (Auto-updates from the MCP endpoint)format_flight_pricecheck_requestTitle: Format Flight Request
Parse and format flight details from natural language text or transcribed image content. Extracts flight information (airlines, flight numbers, dates, airports, prices) and structures it for price comparison. Returns formatted flight data ready for flight_pricecheck, or requests missing information if incomplete.
Annotations:
readOnlyHint: true - Tool only formats/parses data, no external callsdestructiveHint: false - Tool does not modify or delete dataInput Schema:
user_request (required): Flight details in natural language text. Include all available information: flight numbers, airlines, departure/arrival airports and times, dates, prices, passenger counts, and travel class.Example Request:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "format_flight_pricecheck_request",
"arguments": {
"user_request": "I found an Aeroitalia flight XZ2020 from FCO to MXP leaving tomorrow at 19.31 and returning with XZ2021 MXP to FCO next Friday at 10.11. 1 adult, economy, the best fare was 221 EUR"
}
}
}
flight_pricecheckTitle: Flight Price Check
Search multiple booking sources to find better prices for a specific flight the user has already found. Compares prices across different booking platforms to find cheaper alternatives for the exact same flight details.
Annotations:
readOnlyHint: false - Tool performs searches and may trigger external API callsdestructiveHint: false - Tool does not modify or delete dataInput Schema:
trip (required): Flight trip details including segments, passengers, and travel class
legs (required): Array of flight legs (one for outbound, one for return in round trips)travelClass (required): ECONOMY, PREMIUM_ECONOMY, BUSINESS, or FIRSTadults (required): Number of adult passengers (minimum: 1)children (required): Number of child passengers (minimum: 0)infantsInSeat (required): Number of infants requiring a seat (minimum: 0)infantsOnLap (required): Number of infants on lap (minimum: 0)source (required): Source identifier for the query (e.g., "Claude", "MCP", "ChatGPT")price (required): Reference price found by the user (e.g., "84.00", "200.50")currency (required): Three-letter ISO currency code (e.g., "EUR", "USD", "GBP")location (required): Two-letter ISO country code for user location (e.g., "ES", "IT", "US"). If unsure, default to "ZZ"Example Request:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "flight_pricecheck",
"arguments": {
"trip": {
"legs": [
{
"segments": [
{
"airline": "XZ",
"flightNumber": "2020",
"departureAirport": "MXP",
"arrivalAirport": "FCO",
"departureDate": "2025-12-16",
"departureTime": "07:10",
"arrivalTime": "08:25",
"plusDays": 0
}
]
}
],
"travelClass": "ECONOMY",
"adults": 1,
"children": 0,
"infantsInSeat": 0,
"infantsOnLap": 0
... [View full README on GitHub](https://github.com/navifare/navifare-mcp#readme)