Travel Planning FastMCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Travel Planning FastMCPPlan a trip to New York City for 3 days with food recommendations"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Travel Planning FastMCP
Python FastMCP server for travel route planning. It uses a LangChain reactive agent with Tongyi Qwen for AI-generated itineraries and keeps local deterministic tools for budget estimation, packing suggestions, food recommendations, and offline fallback planning.
Install
python3 -m venv .venv
source .venv/bin/activate
python -m pip install -r requirements.txtRelated MCP server: Wisnu MCP
Configure Qwen/Tongyi Agent
plan_trip_route_tool calls Tongyi Qwen through DashScope. Put your API key in .env:
DASHSCOPE_API_KEY=your-real-dashscope-api-keyThe server loads .env automatically before calling the LangChain agent.
Run
.venv/bin/python travel_planner_server.pyTools
plan_trip_route_tool: uses a LangChain Tongyi Qwen agent to create a multi-day route with daily food recommendations, transport advice, lodging-area advice, budget reminders, and practical notes.plan_trip_route_local_tool: creates a deterministic offline route when you do not want to call Qwen-Agent.estimate_trip_budget_tool: estimates lodging, food, local transport, attractions, and contingency in CNY.suggest_packing_list_tool: recommends essentials, seasonal items, and activity-specific items.recommend_food_experiences_tool: recommends food districts, meal themes, snacks, and dietary notes.
Example MCP Client Configuration
Use the Python interpreter inside this project's virtual environment. If the MCP client uses system python3, it may fail with ModuleNotFoundError: No module named 'fastmcp'.
{
"mcpServers": {
"travel-planner": {
"command": "/Users/yantao/Desktop/ai-project/TravelPlanning/.venv/bin/python",
"args": ["/Users/yantao/Desktop/ai-project/TravelPlanning/travel_planner_server.py"]
}
}
}Trae MCP Configuration
Use the same configuration in Trae:
{
"mcpServers": {
"travel-planner": {
"command": "/Users/yantao/Desktop/ai-project/TravelPlanning/.venv/bin/python",
"args": [
"/Users/yantao/Desktop/ai-project/TravelPlanning/travel_planner_server.py"
]
}
}
}After changing the configuration, reload the MCP server or restart Trae.
Troubleshooting
If you see:
ModuleNotFoundError: No module named 'fastmcp'the MCP client is using the wrong Python interpreter. Install dependencies first:
python3 -m venv .venv
.venv/bin/python -m pip install -r requirements.txtThen make sure the MCP command points to:
/Users/yantao/Desktop/ai-project/TravelPlanning/.venv/bin/pythonDevelopment
env PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python3 -m pytest -q
python3 -m compileall travel_planner.py qwen_travel_agent.py travel_planner_server.pyThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceA comprehensive travel aggregation server that enables AI assistants to search for flights and hotels, track flight statuses in real-time, and retrieve airport information. It integrates with Amadeus and AviationStack APIs to provide data on pricing, schedules, and travel routes through natural language.Last updated4MIT
- FlicenseAquality-maintenanceA travel booking server that enables searching for flights, hotels, and destination recommendations based on user interests and budget. It provides additional tools for calculating total trip costs and retrieving destination-specific travel tips.Last updated5
- Flicense-qualityDmaintenanceAn interactive travel planning server that integrates flight searching, weather forecasting, and route calculation through external APIs like Amadeus and OpenWeather. It uses the Model Context Protocol to enable AI assistants to autonomously manage travel logistics and discover local services.Last updated
- FlicenseAqualityCmaintenanceAn AI-powered travel planner MCP server enabling flight and hotel search, weather forecasts, point-of-interest discovery, itinerary generation, and budget management.Last updated8
Related MCP Connectors
TravelMind: 8 MCP tools for travel (12306 trains, flights, hotels, geocode, planning, policy).
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yantaotaotao/TravelPlanning'
If you have feedback or need assistance with the MCP directory API, please join our Discord server