A Model Context Protocol server that creates travel agent-level flight plans using the fast-flights API. - Search for one-way and round-trip flights - Create comprehensive travel plans based on trip parameters - Get airport code information - Use templates for common travel queries 1. Make sure you have Python 3.10 or higher installed 2. Install the required packages: You can run the server direct
Add this skill
npx mdskills install salamentic/google-flights-mcpProvides useful flight search tools with clear setup docs but overly broad permissions.
1# Flight Planner MCP Server23A Model Context Protocol server that creates travel agent-level flight plans using the fast-flights API.45## Features67- Search for one-way and round-trip flights8- Create comprehensive travel plans based on trip parameters9- Get airport code information10- Use templates for common travel queries1112## Installation13141. Make sure you have Python 3.10 or higher installed152. Install the required packages:1617```bash18pip install mcp fast-flights19```2021## Usage2223### Running the Server2425You can run the server directly:2627```bash28python flight_planner_server.py29```3031### Integrating with Claude Desktop32331. Install [Claude Desktop](https://claude.ai/download)342. Create or edit your Claude Desktop configuration file:35 - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`36 - Windows: `%APPDATA%\Claude\claude_desktop_config.json`37383. Add the flight-planner server configuration:3940```json41{42 "mcpServers": {43 "flight-planner": {44 "command": "python",45 "args": [46 "/PATH/TO/flight_planner_server.py"47 ],48 "env": {49 "PYTHONPATH": "/PATH/TO/PROJECT"50 }51 }52 }53}54```55564. Replace `/PATH/TO/` with the actual path to your server file575. Restart Claude Desktop5859### Using the MCP Inspector6061For testing and development, you can use the MCP Inspector:6263```bash64# Install the inspector65npm install -g @modelcontextprotocol/inspector6667# Run the inspector with your server68npx @modelcontextprotocol/inspector python flight_planner_server.py69```7071## Available Tools7273- `search_one_way_flights`: Search for one-way flights between airports74- `search_round_trip_flights`: Search for round-trip flights between airports75- `create_travel_plan`: Generate a comprehensive travel plan7677## Available Resources7879- `airport_codes://{query}`: Get airport code information based on a search query8081## Available Prompts8283- `flight_search_prompt`: Template for searching flights84- `travel_plan_prompt`: Template for creating a comprehensive travel plan8586## Example Queries for Claude8788Once integrated with Claude Desktop, you can ask things like:8990- "What flights are available from NYC to SFO on 2025-04-15?"91- "Can you create a travel plan for my business trip from LAX to TPE from 2025-05-01 to 2025-05-08?"92- "Help me find airport codes for Tokyo."93- "What's the best time to book flights from Boston to London for a summer vacation?"9495## License9697MIT98
Full transparency — inspect the skill content before installing.