Plantrip Mcp Server

Created By
5 months ago
Connect Claude to Plantrip's AI-powered travel planning tools. Create detailed itineraries, generate packing lists, get weather insights, estimate trip costs, ask travel questions, and search destination guides. Get your API key at plantrip.io/developers
Overview
⚠️

plantrip-mcp-server
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Plantrip MCP Server

npm version License: MIT

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

Quick Start

1. Get an API Key

  1. Go to plantrip.io/developers
  2. Sign in with a Plus or Pro account
  3. 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

ToolDescription
create_itineraryCreate a new travel itinerary
get_itinerary_statusPoll generation status
get_itineraryRetrieve complete itinerary
modify_itineraryModify with natural language
list_user_tripsList saved trips
save_itinerarySave to user's trips
delete_tripRemove from saved trips
generate_packing_listAI packing list
ask_travel_expertTravel Q&A
get_weather_insightsWeather/climate info
estimate_trip_costBudget breakdown
search_guidesSearch travel guides
get_tour_availabilityCheck tour dates
submit_tour_inquiryTour 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

VariableRequiredDescription
PLANTRIP_API_KEYYesYour API key from plantrip.io/developers
PLANTRIP_API_URLNoAPI base URL (default: https://plantrip.io/api/agent)

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

License

MIT

Server Config

{
  "mcpServers": {
    "plantrip": {
      "command": "npx",
      "args": [
        "-y",
        "plantrip-mcp-server"
      ],
      "env": {
        "PLANTRIP_API_KEY": "your_api_key_here"
      }
    }
  }
}
Project Info
Created At
5 months ago
Updated At
4 months ago
Author Name
-
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Mnemom

14 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

13 hours ago
Docwand

13 hours ago