npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

plantrip-mcp-server

v1.0.0

Published

MCP Server for Plantrip - Create AI-powered travel itineraries, packing lists, weather insights, and more via Claude Desktop or any MCP client

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 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

| Tool | Description | |------|-------------| | create_itinerary | Create a new travel itinerary | | get_itinerary_status | Poll generation status | | get_itinerary | Retrieve complete itinerary | | modify_itinerary | Modify with natural language | | list_user_trips | List saved trips | | save_itinerary | Save to user's trips | | delete_trip | Remove from saved trips | | generate_packing_list | AI packing list | | ask_travel_expert | Travel Q&A | | get_weather_insights | Weather/climate info | | estimate_trip_cost | Budget breakdown | | search_guides | Search travel guides | | get_tour_availability | Check tour dates | | submit_tour_inquiry | 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 | |----------|----------|-------------| | PLANTRIP_API_KEY | Yes | Your API key from plantrip.io/developers | | PLANTRIP_API_URL | No | API 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