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

campertunity-ai-tools

v0.1.0

Published

AI tools for Campertunity - MCP server, skill files, and backend interfaces for campground search and booking

Readme

Campertunity AI Tools

AI tools to search for campgrounds, check availability and book campsites across the entire world.

Includes agent skill files and an MCP server for AI-powered campground discovery.

Agent Skill Files

This package includes skill files compatible with OpenClaw, Claude Code, Codex, and other agent platforms that support the SKILL.md format.

Install the skill:

# OpenClaw
openclaw skills install campertunity

# Claude Code / other platforms
# Copy skills/campertunity/SKILL.md to your workspace skills directory

MCP Server

Quick Start

{
  "mcpServers": {
    "campertunity": {
      "command": "npx",
      "args": ["-y", "campertunity-ai-tools@latest"]
    }
  }
}

API Key (optional)

No API key is required. For higher rate limits, get a key from campertunity.com/mcp:

{
  "mcpServers": {
    "campertunity": {
      "command": "npx",
      "args": ["-y", "campertunity-ai-tools@latest"],
      "env": {
        "CAMPERTUNITY_API_KEY": "your_api_key_here"
      }
    }
  }
}

Available Tools

listing-search

Search for campgrounds with filters and location-based search.

| Parameter | Type | Description | |-----------|------|-------------| | limit | number | Results to return (default: 50, max: 1000) | | cursor | string | Pagination cursor from previous response | | startDate | string | Availability start date (YYYY-MM-DD) | | endDate | string | Availability end date (YYYY-MM-DD) | | adults | number | Number of adults (default: 1) | | children | number | Number of children (default: 0) | | latitude | number | Center point latitude | | longitude | number | Center point longitude | | radius | number | Search radius in km (default: 20) | | region | string | Region/state (geocoded if no lat/lng) | | city | string | City (geocoded if no lat/lng) | | country | string | Country (geocoded if no lat/lng) | | countryCode | string | Country code, e.g. "US", "CA" | | filters | string[] | Tags to filter by (see below) | | campgroundDescription | string | Natural language description |

listing-details

Get detailed information about a specific listing.

| Parameter | Type | Description | |-----------|------|-------------| | listingId | string | ID of the listing |

listing-availability

Check campsite availability for specific dates.

| Parameter | Type | Description | |-----------|------|-------------| | listingId | string | ID of the listing | | siteIds | string[] | Optional specific site IDs | | startDate | string | Start date (YYYY-MM-DD) | | endDate | string | End date (YYYY-MM-DD) |

listing-book

Get a booking URL for a campground.

| Parameter | Type | Description | |-----------|------|-------------| | listingId | string | ID of the listing | | startDate | string | Start date (YYYY-MM-DD) | | endDate | string | End date (YYYY-MM-DD) | | adults | number | Number of adults (default: 1) | | children | number | Number of children (default: 0) |

Filter Tags

Site Types: tent, rv, lodging, glamping, cabin

Access: driveIn, walkIn, equestrian, boat

Activities: biking, boating, fishing, hiking, horsebackRiding, paddling, windSports, surfing, swimming, whitewaterPaddling, wildlifeWatching

Amenities: picnicTable, fires, toilets, outhouse, potableWater, petFriendly, rvHookup, rvSanitation, trash, showers, wifi, handicap

Terrain: beach, cave, desert, forest, hotSpring, lake, river, swimmingHole, waterfall, creek

Data Notice

Data is collected from multiple sources and enhanced with AI. Do not redistribute, cache, or modify the data. Always use real-time data through the server.

For more information, visit campertunity.com.