Travel-Planning-Assistant-using-LangGraph-and-FastMCP
Successfully developed a Travel Planner Assistant powered by LangGraph and MCP, integrating real-time flights, hotels, weather, places, and timezone tools. Features modular MCP servers, OpenAI agent orchestration, and a Streamlit UI for end-to-end trip planning.
Install / Use
claude mcp add SayamAlt -- npx -y github:SayamAlt/Travel-Planning-Assistant-using-LangGraph-and-FastMCPIf the server publishes to npm under a different name, use that package instead — check the repo README.
MCP Server
Model Context Protocol server
Quality Score
Category
AutomationSupported Platforms
Our assessment of Travel-Planning-Assistant-using-LangGraph-and-FastMCP
Travel-Planning-Assistant-using-LangGraph-and-FastMCP scores 74/100 on our quality scale, 1055th of 1,334 Automation skills we index.
Its MCP Server is 3.9 KB long, well organised into 13 sections with 5 code examples: a solid amount of guidance for an agent.
It has 3 GitHub stars, so there is little community track record yet; judge it on its content.
Maintenance, license and trust
- The repository was last updated about 10 months ago. That is recent enough to be usable, but agent tooling moves fast, so check the instructions against your agent's current version.
- Our last check on 2026-09-12 found the source still online.
- It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 86/100, with 2 cautions from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful.
AI review by kimi-k2.7-code on 2026-09-25. Automated pattern scan on 2026-09-25. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
Travel-Planning-Assistant-using-LangGraph-and-FastMCP compared with similar skills
All 4 of these similar skills score higher than Travel-Planning-Assistant-using-LangGraph-and-FastMCP; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| Travel-Planning-Assistant-using-LangGraph-and-FastMCP (this skill)by SayamAlt | 74 | 3 | 10mo ago | MCP Server |
| claude-memby thedotmack | 100 | 94.7k | today | CLAUDE.md |
| Agent-Reachby Panniantong | 100 | 85.5k | 10d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.8k | today | CLAUDE.md |
| rufloby ruvnet | 100 | 73.3k | 1d ago | CLAUDE.md |
Frequently asked questions
- How do I install Travel-Planning-Assistant-using-LangGraph-and-FastMCP?
- Run
claude mcp add SayamAlt -- npx -y github:SayamAlt/Travel-Planning-Assistant-using-LangGraph-and-FastMCP. The install tabs above show the steps for each supported agent. - Which AI agents does Travel-Planning-Assistant-using-LangGraph-and-FastMCP work with?
- It is written for Claude Code and Claude Desktop, as a MCP Server file. Other agents that read the same format can often use it too.
- Is Travel-Planning-Assistant-using-LangGraph-and-FastMCP safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful. It is MIT-licensed and scores 86/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is Travel-Planning-Assistant-using-LangGraph-and-FastMCP still maintained?
- The repository was last updated about 10 months ago. That is recent enough to be usable, but agent tooling moves fast, so check the instructions against your agent's current version.
Skill content
View source on GitHub🧳 Travel Planning Assistant using LangGraph + MCP
Successfully developed an intelligent Travel Planner Assistant powered by LangGraph, FastMCP, and Modular MCP Servers, providing real-time trip planning with flights, hotels, weather, places, and timezone information—all orchestrated through an LLM agent and delivered via a clean Streamlit UI.
🚀 Overview
This project implements a fully modular, agent-driven travel planning system capable of:
- Retrieving live flight options using the Amadeus API
- Searching hotel availability & pricing
- Fetching real-time weather for any city
- Recommending nearby attractions and points of interest
- Detecting timezones and local times
- Coordinating results through a LangGraph-powered LLM workflow
The system uses MCP (Model Context Protocol) servers for each data source—allowing plug-and-play scalability, clean separation of services, and fault-tolerant tool execution.
🧩 Key Components
1. LangGraph Workflow
- Core agent loop implemented with LangGraph
- Integrated routing via
ToolNodeandtools_condition - Persistent thread state using SQLite checkpoints
- Handles user queries, tool execution, and final answer synthesis
2. MCP Servers (FastMCP-based)
Each microservice runs as an independent MCP server:
flights_mcp.py→ Live flights via Amadeus APIhotels_mcp.py→ Hotel search & filteringweather_mcp.py→ Current weather + forecastplaces_mcp.py→ Attractions & POIsmath_mcp.py→ Utility math operations- Fully typed tool definitions with FastMCP decorators
3. Streamlit Interface
- Chat-style conversation interface
- Threads persisted and reloadable
- Supports user messages, agent messages, and tool results
- Real-time server logs shown inside Streamlit
🔍 Features
- End-to-end travel planning from a single prompt
- Real-time data retrieval (flights, hotels, weather, timezone)
- LLM-based reasoning with multiple MCP tools
- Robust agent orchestration using LangGraph
- Stateless UI, stateful backend with saved chat threads
- Easily extendable (add new MCP tools in minutes)
🛠️ Tech Stack
- LangGraph – LLM agent workflow engine
- FastMCP + MCP – Modular tool servers
- LangChain – Message and tool abstractions
- Streamlit – Frontend UI
- Amadeus SDK – Flight data retrieval
- Geopy & TimezoneFinder – Geo and timezone utilities
- Python 3.10+
📂 Project Structure
├── app.py # Streamlit frontend
├── travel_planner_chatbot.py # LangGraph agent & workflow
├── flights_mcp.py # Live flight search MCP server
├── hotels_mcp.py # Hotel search MCP server
├── weather_mcp.py # Weather MCP server
├── places_mcp.py # Places & attractions MCP server
├── math_mcp.py # Utility MCP server
├── requirements.txt # Dependencies
└── README.md
🧠 How It Works
1. User sends a travel-related query through Streamlit.
2. LangGraph agent receives the message and evaluates needed tools.
3. Tools are executed via MCP servers running in separate processes.
4. Agent collects tool results, reasons over them, and generates a plan.
5. Final structured response is sent back to the UI.
📦 Installation & Setup
Clone repo:
git clone https://github.com/your-username/travel-planning-assistant-using-fastmcp
cd travel-planning-assistant-using-fastmcp
Install requirements:
pip install -r requirements.txt
Start MCP servers:
python flights_mcp.py
python hotels_mcp.py
python weather_mcp.py
python places_mcp.py
python math_mcp.py
Run Streamlit app
streamlit run app.py
🤝 Contributions
Pull requests are welcome! You can add more MCP tools (car rentals, restaurants, currency converters, maps, etc.) to extend functionality.
📜 License
MIT License.
Related Skills
claude-mem
94.7kPersistent Context Across Sessions for Every Agent – Captures everything your agent does during sessions, compresses it with AI, and injects relevant context back into future sessions. Works with Claude Code, OpenClaw, Codex, Gemini, Hermes, Copilot, OpenCode + More
Agent-Reach
85.5kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.8kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
ruflo
73.3k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
