plantrip-mcp-server
Plantrip MCP Server
An MCP (Model Context Protocol) server that connects AI assistants like Claude to Plantrip's travel planning tools. Create itineraries, generate packing lists, get weather insights, estimate trip costs, and more.
Features
Create Itineraries - Generate detailed day-by-day travel plans with activities, costs, and locations
Packing Lists - AI-powered packing lists based on destination, weather, and activities
Weather Insights - Detailed climate information and weather patterns
Cost Estimates - Budget breakdowns for accommodations, food, transport, and activities
Travel Expert - Ask any travel question and get expert answers
Travel Guides - Search Plantrip's library of destination guides
Tour Availability - Check tour dates and submit booking inquiries
Related MCP server: trip-planner-mcp
Quick Start
1. Get an API Key
Go to plantrip.io/developers
Sign in (free — no subscription required)
Create a new API key
2. Configure Claude Desktop
Add to your Claude Desktop config:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"plantrip": {
"command": "npx",
"args": ["-y", "plantrip-mcp-server"],
"env": {
"PLANTRIP_API_KEY": "pt_agent_your_key_here"
}
}
}
}3. Restart Claude Desktop
Quit and reopen Claude Desktop to load the server.
Usage
Ask Claude things like:
"Create a 5-day itinerary for Tokyo focused on food and culture"
"What should I pack for a hiking trip to Patagonia in March?"
"What's the weather like in Bali in August?"
"How much would a week in Iceland cost for 2 people?"
"What are the visa requirements for US citizens visiting Vietnam?"
Available Tools
Tool | Description |
| Create a new travel itinerary |
| Poll generation status |
| Retrieve complete itinerary |
| Modify with natural language |
| List saved trips |
| Save to user's trips |
| Remove from saved trips |
| AI packing list |
| Travel Q&A |
| Weather/climate info |
| Budget breakdown |
| Search travel guides |
| Check tour dates |
| Tour booking inquiry |
Claude Code Setup
Add to .mcp.json in your project:
{
"mcpServers": {
"plantrip": {
"command": "npx",
"args": ["-y", "plantrip-mcp-server"],
"env": {
"PLANTRIP_API_KEY": "pt_agent_your_key_here"
}
}
}
}Environment Variables
Variable | Required | Description |
| Yes | Your API key from plantrip.io/developers |
| No | API base URL (default: |
REST API
You can also use the Plantrip API directly:
curl -X POST https://plantrip.io/api/agent/execute \
-H "X-API-Key: pt_agent_your_key" \
-H "Content-Type: application/json" \
-d '{
"tool": "create_itinerary",
"arguments": {
"destination": "Tokyo, Japan",
"days": 5
}
}'Full API docs at plantrip.io/developers.
Rate Limits
60 requests/minute
10,000 requests/day
Links
License
MIT
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/klabianco/plantrip-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server