SkillAgentSearch skills...

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-FastMCP

If the server publishes to npm under a different name, use that package instead — check the repo README.

About this skill
🔌

MCP Server

Model Context Protocol server

Quality Score

74/100

Category

Automation

Supported Platforms

Claude Code
Claude Desktop

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.

Substance
26/30
Structure
20/20
Description
15/15
Adoption
3/20
Freshness
11/15

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 found

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.

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.

SkillScoreStarsUpdatedFormat
Travel-Planning-Assistant-using-LangGraph-and-FastMCP (this skill)by SayamAlt74310mo agoMCP Server
claude-memby thedotmack10094.7ktodayCLAUDE.md
Agent-Reachby Panniantong10085.5k10d agoCLAUDE.md
headroomby headroomlabs-ai10073.8ktodayCLAUDE.md
rufloby ruvnet10073.3k1d agoCLAUDE.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.

🧳 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 ToolNode and tools_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 API
  • hotels_mcp.py → Hotel search & filtering
  • weather_mcp.py → Current weather + forecast
  • places_mcp.py → Attractions & POIs
  • math_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

View on GitHub
GitHub Stars3
CategoryAutomation
Updated10mo ago
Forks0

Languages

Python

Trust signals

86/100

From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.

2 low