Trip Planner MCP Server
Enables managing travel itineraries with CRUD tools for journeys, stops, and plan items, plus weather lookup, integrated with public MCP servers for time and web search.
README
Trip Planner — MCP Server + LangGraph Agent
A journey-planning MCP server built with FastMCP, plus a LangGraph agent that connects to it alongside two public MCP servers. The agent manages a traveller's itinerary: journeys (trips as a whole), the city stops within a journey, and the plan items (sights, meals, activities) within each stop.
Architecture

The user asks a question. The LangGraph agent thinks: if it needs a tool, it
calls one, gets the result, and thinks again — repeating until it has enough
to answer. MultiServerMCPClient connects to all three MCP servers when the
agent starts and hands every discovered tool to the agent. One server is
ours; two are public.
Data model, tools, resource, prompt
SQLite, three tables, one nesting level each:
| Table | Holds |
|---|---|
journeys |
A trip as a whole — title, home city, dates, budget |
stops |
A city leg within a journey — city, country, arrival date, nights, transport mode |
plan_items |
A sight/meal/activity within a stop — title, category, time window, priority, status |
Tools (backend/mcpserver/TripPlannerServer.py) — full CRUD plus a live weather lookup:
| Tool | CRUD |
|---|---|
create_journey |
Create |
add_stop |
Create |
add_plan_item |
Create |
list_stops |
Read |
update_plan_status |
Update |
delete_stop |
Delete (cascades to its plan items) |
get_destination_weather |
Calls the free Open-Meteo API (geocoding + current weather), no key needed |
Resources:
journeys://all— one-line summary of every journeyjourney://{journey_id}/itinerary— templated resource, a day-by-day itinerary for one journey (each stop with its plan items underneath)
Prompt:
suggest_itinerary(stop_id)— a reusable template that turns a stop's saved plan items into an hour-by-hour day plan
Public servers used, and why
time(uvx mcp-server-time, stdio) — official reference MCP server for timezone/local-time lookups. Trivial, zero-risk, no genuine remote alternative exists for this, so stdio is the right call here.tavily(Streamable HTTP,https://mcp.tavily.com/mcp) — a genuinely hosted remote MCP server (no local process at all) from Tavily, a reputable company in the LLM tooling space (the same search backend LangChain's own community tools use). It needs a free API key (tavily.com, no credit card). Picked over a plain page-fetchserver because it does real-time, ranked web search (attractions, travel advisories, local facts) rather than fetching one raw page — a much stronger fit for a trip planner. Deliberately avoided pulling a server from the public MCP registries (registry.modelcontextprotocol.io, Smithery, Glama) directly — those directories are unvetted, and searching them turned up entries with suspicious names during development. Tavily is a known, reputable company with a real product, not an anonymous registry listing.
Extras beyond the core CRUD flow
get_destination_weathercalls the free Open-Meteo API from inside a tool (geocoding + current weather, no key required).backend/integrations/fastapimcp_integration.pyserves REST (/health,/journeys) and MCP (/mcp) from one FastAPI ASGI app.add_stoplogs viactx.info(...), visible live in the MCP Inspector's notification panel.
How to run it
-
Install dependencies (uses
uv):uv sync -
Copy
.env.exampleto.envand fill in:OPENAI_API_KEY=sk-... TAVILY_API_KEY=tvly-... # free key at https://tavily.com -
Start the server (terminal 1):
uv run backend/mcpserver/TripPlannerServer.pyLive at
http://127.0.0.1:8000/mcp(note the required/mcpsuffix).Optional — run the combined REST+MCP app instead:
uv run python -m backend.integrations.fastapimcp_integration -
Run the agent (terminal 2):
uv run backend/client/langgraphagent.py "Add a 3-night stop in Kyoto to journey 1 and tell me the local time there" -
Optional — test the server directly in the MCP Inspector before running the agent:
npx @modelcontextprotocol/inspectorTransport: Streamable HTTP, URL:
http://127.0.0.1:8000/mcp.
Requires uv (Python/uvx) and Node.js (npx, for the Inspector) installed.
Example runs
Full tool-call traces are in screenshots/demo.txt.
Summary:
- Write-only — "Create a new journey called 'Bali Getaway' from Mumbai, budget 1500, dates 2026-09-01 to 2026-09-10. Then add a 5-night stop in Bali, Indonesia to it." → Created journey #3 and stop #4 on our server.
- Write + public
time— "Add a 4-night stop in Reykjavik, Iceland to journey 3, and tell me the current local time there." → Added stop #5, and calledget_current_time(both tool calls fired in parallel in one turn) → 11:03, Saturday, Atlantic/Reykjavik (UTC+0). - Public
tavilyresearch — "What are the top attractions to see in Reykjavik right now, and are there any current travel advisories for Iceland?" → Real-time web search returned 8 ranked attractions and 3 current government travel advisories, with live sources.
Why an MCP server instead of plain Python functions in the agent?
Putting tools in an MCP server decouples what a tool can do from which
agent uses it. The same trip_planner server can be called by this
LangGraph agent, tested by hand in the MCP Inspector, or plugged into a
completely different agent or client later, all without touching the tool
code — because the server exposes a stable, self-describing contract
(schemas generated straight from function signatures and docstrings) over a
standard protocol, instead of being tangled into one agent's Python process.
It also means the server can run, scale, and fail independently of the
agent: if the trip-planner logic needs a different host, a different
language, or its own deployment schedule, that's an infrastructure change,
not a rewrite. Writing the same logic as inline Python functions works fine
for a single throwaway script, but it locks the tool to that one agent and
gives up all of that reuse, isolation, and discoverability for no benefit.
Video walkthrough
(link to be added)
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。