Back to Browse

Plantrip MCP Server

Developer ToolsModerate7.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Travel planning: day-by-day itineraries, packing lists, weather insights, and trip cost estimates

About

Travel planning: day-by-day itineraries, packing lists, weather insights, and trip cost estimates

Security Report

7.2
Moderate7.2Low Risk

This MCP server is well-structured with proper authentication via API key, appropriate input validation, and reasonable permission scope for a travel planning tool. The code quality is good with proper error handling and no malicious patterns detected. Minor findings include logging to stderr and broad exception handling, but these do not constitute security risks. Supply chain analysis found 1 known vulnerability in dependencies (0 critical, 1 high severity). Package verification found 1 issue.

7 files analyzed · 6 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Free API key from https://plantrip.io/developersRequired

Environment variable: PLANTRIP_API_KEY

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-plantrip-plantrip": {
      "env": {
        "PLANTRIP_API_KEY": "your-plantrip-api-key-here"
      },
      "args": [
        "-y",
        "plantrip-mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

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 (free — no subscription required)
  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

Links

License

MIT

Reviews

No reviews yet

Be the first to review this server!

Plantrip MCP Server - Travel planning: day-by-day itineraries, packing lists, | MCP Marketplace