MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQ

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

Navifare MCP Server

by Navifare
Developer ToolsModerate6.1MCP RegistryLocal
Free

Server data from the Official MCP Registry

Flight price comparison MCP server. Search multiple booking sources to find better flight prices.

About

Flight price comparison MCP server. Search multiple booking sources to find better flight prices.

Security Report

6.1
Moderate6.1Moderate Risk

Valid MCP server (3 strong, 1 medium validity signals). 6 known CVEs in dependencies (0 critical, 3 high severity) Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

8 files analyzed · 7 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

file_system

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Google Gemini API key for image extraction (required)Required

Environment variable: GEMINI_API_KEY

Navifare API base URL (optional, defaults to https://api.navifare.com/api/v1/price-discovery/flights)Optional

Environment variable: NAVIFARE_API_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-simonenavifare-navifare-mcp": {
      "env": {
        "GEMINI_API_KEY": "your-gemini-api-key-here",
        "NAVIFARE_API_BASE_URL": "your-navifare-api-base-url-here"
      },
      "args": [
        "-y",
        "navifare-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Navifare MCP Server

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.

Overview

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.

MCP Endpoint

  • Production: https://mcp.navifare.com/mcp
  • Documentation: https://www.navifare.com/mcp (Auto-updates from the MCP endpoint)
  • Learn more about MCP: Model Context Protocol

Tools

format_flight_pricecheck_request

Title: 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 calls
  • destructiveHint: false - Tool does not modify or delete data

Input 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_pricecheck

Title: 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 calls
  • destructiveHint: false - Tool does not modify or delete data

Input 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 FIRST
    • adults (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
      },
      "source": "MCP",
      "price": "84",
      "currency": "EUR",
      "location": "IT"
    }
  }
}

Current Limitations

  • Round-trip flights only: One-way trips are not yet supported. Requests with a single leg will return an error immediately.
  • Same origin/destination: Open-jaw trips (returning to a different airport) are not yet supported. The return flight must depart from the outbound destination and arrive at the outbound origin.

Revenue Share

Revenue share available for qualified partners!

Earn commission on flight bookings made through your integration. Revenue share available for qualified partners.

Compliance

This server complies with Anthropic's MCP Directory Policy. See docs/COMPLIANCE.md for details.

Privacy Policy and Terms of Service: https://navifare.com/terms
Contact: contact@navifare.com
Privacy Inquiries: privacy@navifare.com

Environment Variables

The only environment variable you typically need to document for this MCP server is:

  • GEMINI_API_KEY (required): Google Gemini API key for natural language parsing (used when your integration relies on Gemini for text/image understanding).

Examples

See docs/USAGE_EXAMPLES.md for complete usage examples with detailed workflows.

Documentation

Most documentation is in the docs/ directory (and a few files like this README.md and REPOSITORY_STRUCTURE.md live at the repo root):

Getting Started

  • docs/QUICKSTART.md - 5-minute quick start guide
  • docs/LOCAL_DEPLOYMENT.md - Comprehensive local deployment guide
  • docs/RENDER_DEPLOYMENT_GUIDE.md - Production deployment guide

Reference

  • docs/COMPLIANCE.md - Anthropic MCP Directory compliance details
  • docs/USAGE_EXAMPLES.md - Complete usage examples
  • docs/CLAUDE_SUBMISSION_CHECKLIST.md - Claude submission checklist
  • REPOSITORY_STRUCTURE.md - Repository organization

Additional Guides

  • docs/NGROK_SETUP.md - ngrok setup for local testing
  • docs/IMAGE_INPUT_GUIDE.md - Image handling guide

Testing

Test files are located in the test/ directory. See test/README.md for details about available tests.

Running Tests

# Test with MCP Inspector
npx @modelcontextprotocol/inspector node dist/index.js

# Run specific test
node test/test-mcp.js

Scripts

Helper scripts are in the scripts/ directory:

  • scripts/start-local.sh - Start local development server
  • scripts/deploy-to-render.sh - Prepare for Render deployment
  • scripts/start-servers.sh - Start multiple servers
  • scripts/stop-servers.sh - Stop running servers

Repository Structure

navifare-mcp/
├── src/              # TypeScript source code
├── dist/             # Compiled JavaScript (generated)
├── docs/             # Documentation
├── test/             # Test files
├── scripts/          # Helper scripts
└── [config files]    # package.json, Dockerfile, etc.

See REPOSITORY_STRUCTURE.md for detailed structure.

Support

  • General Inquiries: contact@navifare.com
  • Privacy Inquiries: privacy@navifare.com
  • GitHub Issues: https://github.com/navifare/navifare-mcp

Reference

  • MCP Documentation
  • From REST API to MCP Server

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source Codenpm Package

Details

Published February 24, 2026
Version 0.1.3
0 installs
Local Plugin

More Developer Tools MCP Servers

Git

Free

by Modelcontextprotocol · Developer Tools

Read, search, and manipulate Git repositories programmatically

80.0K
Stars
4
Installs
6.5
Security
No ratings yet
Local

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

137
Stars
483
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
65
Installs
10.0
Security
4.6
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

120.0K
Stars
22
Installs
6.0
Security
5.0
Local

mcp-creator-typescript

Free

by mcp-marketplace · Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm — conversationally

-
Stars
16
Installs
10.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace · Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
16
Installs
10.0
Security
No ratings yet
Local