drio
Open app

Flights Mcp Server

Source

MCP Server for Google Flights !!

Catalog onlyCatalog onlySTDIO

Overview

Flights MCP Server is a server application designed to interface with Google Flights, providing users with access to flight data and functionalities.

To use the Flights MCP Server, clone the repository from GitHub, set up the server environment, and follow the instructions in the README file to connect to Google Flights API.

  • Access to real-time flight data from Google Flights. - Ability to search for flights based on various criteria. - Integration capabilities with other applications and services.
  1. Building travel applications that require flight search functionalities.
  2. Creating dashboards for monitoring flight prices and availability.
  3. Developing tools for travel agencies to manage bookings and inquiries.

Add to your AI client

Use these steps to connect Flights Mcp Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "flights-mcp-server-smamidipaka6": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flights-mcp-server-smamidipaka6"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "flights-mcp-server-smamidipaka6": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flights-mcp-server-smamidipaka6"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "flights-mcp-server-smamidipaka6": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flights-mcp-server-smamidipaka6"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "flights-mcp-server-smamidipaka6": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flights-mcp-server-smamidipaka6"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "flights-mcp-server-smamidipaka6": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flights-mcp-server-smamidipaka6"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "flights-mcp-server-smamidipaka6": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flights-mcp-server-smamidipaka6"
      ]
    }
  }
}

FAQ

Is the Flights MCP Server free to use?

Yes! The server is open-source and free to use.

What programming language is used for the Flights MCP Server?

The server is developed in Python.

How can I contribute to the Flights MCP Server?

You can contribute by submitting issues or pull requests on the GitHub repository.