AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Flights

mcp-octotrip-flights · by OctoTrip

Free MCP server for live flight search. No login, no API key. Streamable HTTP + SSE.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add mcp-octotrip-flights

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-octotrip-flights)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Flights? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

OctoTrip Flights MCP Server

[](https://glama.ai/mcp/servers/OctoTrip/flights) [](https://glimind.com/tool/mcp-registry%2Fapp.octotrip%2Fflights?ref=badge) [](https://stats.uptimerobot.com/ZEq8YVyOAu)

Free, no-login MCP server for searching and comparing flights with real-time pricing from multiple airlines and booking platforms worldwide.

MCP Streamable HTTP Endpoint:

https://mcp.octotrip.app/flights/mcp

Related

Affiliate Disclosure

OctoTrip is free to use. Booking links contain affiliate attribution -- OctoTrip may earn a commission at no extra cost to you. Search results are ranked by price within each stop-count group, not by affiliate payout.

Quick Start

Add to your MCP client configuration:

{
  "mcpServers": {
    "octotrip-flights": {
      "url": "https://mcp.octotrip.app/flights/mcp"
    }
  }
}

No API key or login required.

Use with...

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "octotrip-flights": {
      "url": "https://mcp.octotrip.app/flights/mcp"
    }
  }
}

Cursor / Windsurf

Add to your MCP settings:

{
  "mcpServers": {
    "octotrip-flights": {
      "url": "https://mcp.octotrip.app/flights/mcp"
    }
  }
}

Cline

Add to your Cline MCP settings:

{
  "mcpServers": {
    "octotrip-flights": {
      "url": "https://mcp.octotrip.app/flights/mcp"
    }
  }
}

LobeHub

[](https://lobehub.com/mcp/xltnapps-octotrip-flights)

OpenClaw

openclaw plugins install clawhub:@xltnapps/octotrip-flights

Smithery

Install via Smithery:

npx -y @smithery/cli install xltnapps/octotrip-flights --client claude

Hermes Agent

hermes mcp add octotrip-flights --url https://mcp.octotrip.app/flights/mcp
hermes mcp test octotrip-flights

Or add to ~/.hermes/config.yaml:

mcp_servers:
  octotrip_flights:
    url: "https://mcp.octotrip.app/flights/mcp"

Stdio-only clients

For MCP clients that only support stdio transport:

npx mcp-remote https://mcp.octotrip.app/flights/mcp

curl / Protocol Example

A complete MCP session using curl (initialize, list tools, call search):

# 1. Initialize
curl -s -X POST https://mcp.octotrip.app/flights/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0", "id": 1, "method": "initialize",
    "params": {
      "protocolVersion": "2025-03-26",
      "capabilities": {},
      "clientInfo": {"name": "example", "version": "1.0"}
    }
  }'

# 2. List tools
curl -s -X POST https://mcp.octotrip.app/flights/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc": "2.0", "id": 2, "method": "tools/list"}'

# 3. Search
curl -s -X POST https://mcp.octotrip.app/flights/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0", "id": 3, "method": "tools/call",
    "params": {
      "name": "search",
      "arguments": {
        "origin": "FRA",
        "destination": "BCN",
        "departure_date": "2026-08-01"
      }
    }
  }'

Transport: stateless streamable HTTP. Responses use text/event-stream (SSE). No session persistence or resumability. Rate limit: 1 request/second with burst capacity of 5.

Tool: search

Searches live flight offers between an origin and destination for given travel dates. Supports one-way and round-trip searches with flexible passenger counts and cabin class. Returns price-ranked results grouped by number of stops, showing the cheapest options from multiple airlines and booking platforms. The tool queries external flight aggregator APIs in real time and includes affiliate booking links. It does not book flights, modify reservations, charge users, or store user data.

Parameters

| Parameter | Type | Required | Default | Description | |---|---|---|---|---| | origin | string | yes | -- | Departure city, airport name, or IATA code (e.g. "Frankfurt", "JFK") | | destination | string | yes | -- | Arrival city, airport name, or IATA code | | departure_date | string | yes | -- | Departure date (YYYY-MM-DD, DD.MM.YYYY, or natural-language) | | return_date | string | no | -- | Return date for round-trip. Omit for one-way | | adults | integer | no | 1 | Number of adult passengers (1-9) | | children | integer | no | 0 | Number of children aged 2-11 (0-9) | | infants | integer | no | 0 | Number of infants under 2 (0-9) | | trip_class | string | no | "Y" | Cabin class: Y for economy, C for business | | currency | string | no | "EUR" | ISO 4217 currency code (EUR, USD, GBP, etc.) | | locale | string | no | "en" | Response language code (en, de, etc.) |

Response Format

Results are grouped by number of stops with the cheapest options per group:

{
  "results": [
    {
      "airline": "Lufthansa",
      "airline_code": "LH",
      "alliance": "Star Alliance",
      "flight_numbers": ["LH120", "LH121"],
      "is_direct": true,
      "stops": 0,
      "total_duration_minutes": 110,
      "outbound": {
        "departure": "FRA",
        "arrival": "MUC",
        "departure_time": "18:15",
        "arrival_time": "19:10",
        "departure_date": "2026-07-15",
        "arrival_date": "2026-07-15",
        "duration_minutes": 55,
        "stops": 0,
        "legs": [
          {
            "flight_number": "LH120",
            "carrier": "Lufthansa",
            "aircraft": "Airbus A319",
            "departure": "FRA",
            "arrival": "MUC",
            "departure_time": "18:15",
            "arrival_time": "19:10",
            "departure_date": "2026-07-15",
            "arrival_date": "2026-07-15",
            "duration_minutes": 55
          }
        ]
      },
      "return": { ... },
      "price": 292.39,
      "currency": "EUR",
      "baggage": "No checked bag, Cabin bag: 1 piece(s)",
      "gate": "City.Travel",
      "booking_url": "https://...",
      "link_type": "affiliate",
      "affiliate_disclosure": "This link contains affiliate attribution. OctoTrip may earn a commission at no extra cost to you.",
      "tags": ["convenient_ticket", "direct"]
    }
  ],
  "total": 6,
  "total_available": 876,
  "origin_resolved": { "iata": "FRA", "name": "Frankfurt Airport", "city": "Frankfurt am Main", "country_code": "DE" },
  "destination_resolved": { "iata": "MUC", "name": "Munich Airport", "city": "Munich", "country_code": "DE" },
  "validity": "Results and booking links are valid for approximately 15 minutes.",
  "query": { ... }
}

Result Validity

Search results and booking links are valid for approximately 15 minutes. Flight prices are determined through a real-time bidding process and are not guaranteed beyond this window. If a user wants to book, they should do so promptly. For stale results, run a new search.

Error Responses

The server returns structured errors with suggestions:

  • airport_not_found -- airport could not be resolved. Try an IATA code, city name, or airport name.
  • disambiguation_needed -- multiple airports found (e.g. "New York" returns JFK, LGA). Pick one and retry.
  • invalid_date -- date format not recognized. Use YYYY-MM-DD, DD.MM.YYYY, or similar.
  • no_results -- no flights available for the given criteria. Try different dates or a nearby airport.

Example Prompts

  • Find me the cheapest direct flight from New York to London in August
  • Compare flights from Frankfurt to Munich on July 15, round-trip returning July 22
  • I need a one-way flight from LAX to Tokyo next Friday, economy class
  • Search for 2 adults and 1 child flying from Barcelona to Paris on September 1
  • What's the cheapest business class flight from Dubai to Singapore this month?

Privacy

This server does not log IP addresses, search queries, or any user-identifiable data. See [PRIVACY.md](PRIVACY.md) for full details including sample log entries.

Security

To report a vulnerability, see [SECURITY.md](SECURITY.md).

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.