Skip to main content
Glama
skrishnak7

skrishnak7-mcp

by skrishnak7

skrishnak7-mcp

Sample MCP server that exposes a flight schedule finder tool backed by the Skyscanner Browse Quotes API (via RapidAPI).

Features

  • MCP tool: find_flight_schedule

  • Skyscanner Browse Quotes lookup

  • Simple summary of flight quotes

Related MCP server: flights-mcp

Setup

  1. Create a RapidAPI account and subscribe to a Skyscanner API.

  2. Copy .env.example to .env and fill in values.

  3. Install dependencies and build:

npm install
npm run build

Run locally

npm run dev

Claude Desktop configuration

Add a server entry to your Claude Desktop config:

{
  "mcpServers": {
    "skrishnak7-mcp": {
      "command": "node",
      "args": ["/Users/krishnakanukuntla/skrishnak7-mcp/dist/index.js"],
      "env": {
        "SKYSCANNER_API_KEY": "your_rapidapi_key_here",
        "SKYSCANNER_API_HOST": "skyscanner-skyscanner-flight-search-v1.p.rapidapi.com",
        "SKYSCANNER_BASE_URL": "https://skyscanner-skyscanner-flight-search-v1.p.rapidapi.com"
      }
    }
  }
}

Tool usage

Example inputs for find_flight_schedule:

{
  "origin": "SFO",
  "destination": "JFK",
  "departureDate": "2025-06-15",
  "country": "US",
  "currency": "USD",
  "locale": "en-US",
  "maxResults": 5
}

Notes

  • This uses the legacy Skyscanner Browse Quotes endpoint on RapidAPI.

  • Update the host or base URL if your RapidAPI Skyscanner API differs.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    An MCP server that provides flight search capabilities using the Aviasales API, allowing users to search, filter, and get details on flights and generate booking links.
    4
    GPL 3.0
  • F
    license
    A
    quality
    D
    maintenance
    An MCP server for holiday flight planning powered by Google Flights via SerpAPI, enabling real-time flight search, destination discovery, airport comparison, and multi-country trip planning.
    13
    -