Trip Planner
Provides tools for managing day-by-day travel itineraries stored in SQLite, including adding activities with guard rails, removing activities, and retrieving full itineraries grouped by day.
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., "@Trip PlannerPlan a 3-day trip to Kyoto, Japan"
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.
Trip Planner — two agents, one enforced boundary
A trip planner built on the Model Context Protocol. You name a place and a number of days; a planner agent researches it and builds a real day-by-day itinerary in SQLite.
The interesting part isn't that it plans trips. It's how the two agents are kept apart.
The boundary
Local Scout ──▶ tavily-mcp can search the web, cannot touch the trip
Planner ──▶ itinerary_server can write the trip, has no internetThe Planner has no search tool. Its only route to the outside world is calling
research_place — which is the Scout, attached to it as an ordinary tool via
.as_tool(). The Scout, in turn, has no itinerary tools, so it structurally
cannot write to the trip no matter what it decides to do.
Neither restriction is a prompt. Each agent is handed a different set of MCP servers, and that's the whole enforcement mechanism. Prompts can be talked around; a tool that isn't in the list cannot be called.
Related MCP server: wanderlog-mcp
Guard rails live in the server
add_activity rejects a day outside the trip's length:
> add_activity(trip_id=1, day=99, title="...")
Rejected: Day 99 is outside this 3-day trip - use a day from 1 to 3That check is in db.py, not in the instructions. The agent gets a
real error back and has to correct itself — which it does.
Setup
uv sync
cp .env.example .env # add your keysTwo keys are needed: OPENAI_API_KEY (or another provider via PLANNER_MODEL)
and TAVILY_API_KEY for the Scout's search. npx must be on your PATH — the
Tavily MCP server runs through it.
Run it
uv run main.py # create a trip, plan it, print it
uv run main.py --list # list existing trips
uv run main.py --show 1 # re-print one itineraryPoint it at a different model with one env var:
PLANNER_MODEL=gpt-4o-miniWhat a run looks like
Two days in Porto, planned from scratch:
=== Trip 2: Porto, Portugal (2 days) ===
Day 1
- São Bento Railway Station
Iconic tiled station hall and an easy first stop in the historic centre.
Allow 15–20 minutes. No booking needed.
- Sé do Porto (Porto Cathedral)
Main old-city cathedral and a strong historic anchor. Allow 30–45 minutes.
- Ribeira
Porto's classic riverfront old quarter. Allow 1–2 hours.
- Palácio da Bolsa
Ornate 19th-century interiors; one of the best paid visits in the centre.
Book ahead for guided tours.
- Torre dos Clérigos
The classic bell tower and city panorama. Booking ahead helps at busy times.
Day 2
- Dom Luís I Bridge
- Port wine cellars in Vila Nova de Gaia
- Jardim do Morro
- Jardins do Palácio de CristalDay 1 is the historic centre, Day 2 is Gaia and the west side — grouped so a day doesn't zig-zag across the city.
The MCP server
Tool | What it does |
| The trip, its days, and every activity grouped by day |
| Adds one activity — rejects out-of-range days |
| Removes one by id |
It speaks stdio, so the agent launches it as a subprocess. The Scout's server,
tavily-mcp, is filtered down to just tavily_search — hiding crawl, map and
extract keeps its tool list small and its behaviour predictable.
Layout
db.py SQLite schema and access — trips, activities, guard rails
itinerary_server.py MCP server: the only way the trip gets written
planner.py Scout on Tavily, wrapped via .as_tool(); Planner on itinerary
main.py CLIFour files, about 330 lines.
Notes
The project sets
link-mode = "copy"and passesUV_LINK_MODE=copyto every spawned MCP server, so it works on a cloud-synced drive (OneDrive, Dropbox), whereuv's default hardlinking fails withos error 396.main.pyreconfigures stdout to UTF-8 — accented place names would otherwise print as mojibake in the Windows console.
Verified
Both parts were tested for real, not assumed:
The MCP server over stdio: tool listing, an itinerary read, and the day guard rail correctly rejecting
day=99on a 3-day trip.A full end-to-end run on a 2-day Porto trip — the Scout searched, the Planner wrote nine activities, grouped geographically, with booking notes on the two that need them.
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
- Flicense-qualityBmaintenanceAn MCP server that orchestrates parallel searches for flights, hotels, and activities to generate travel itineraries. It features persistent state management via LangGraph and SQLite while ensuring the total cost remains within a specified budget.
- AlicenseAqualityAmaintenanceWanderlog-mcp is an MCP server that lets LLM agents plan and edit Wanderlog trip itineraries — adding places, hotels, notes, and checklists to any day, managing trip dates, and searching for destinations. It turns a conversational prompt into a fully built-out travel itinerary with practical details interleaved between each stop.1825292MIT
- FlicenseAqualityCmaintenanceAn AI-powered travel planner MCP server enabling flight and hotel search, weather forecasts, point-of-interest discovery, itinerary generation, and budget management.8
- Flicense-qualityBmaintenanceMulti-domain MCP server enabling AI agents to plan and execute vacation travel and birthday party logistics via local tool pipelines.
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
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/Nirmai3799/mcp-project'
If you have feedback or need assistance with the MCP directory API, please join our Discord server