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

@openvancamp/mcp-server

v0.2.2

Published

Official MCP server for OpenVan.camp — free vanlife/RV travel data: fuel prices, events, weather scores, food index, currency, news. No auth, CC BY 4.0.

Readme

@openvan/mcp-server

npm version MIT License

Official MCP server for OpenVan.camp — free, no-auth, machine-readable vanlife and RV travel data for AI agents.

Exposes 11 read-only tools via the Model Context Protocol so you can ask your AI assistant about:

  • Fuel prices across 125+ countries (gasoline, diesel, LPG, CNG)
  • VanSky vanlife weather suitability scores (0-100)
  • VanBasket food price index (world average = 100)
  • Currency conversion (150+ currencies)
  • Events (expos, festivals, meetups, road trips)
  • News stories in 7 languages

Data is CC BY 4.0. Attribute OpenVan.camp when citing.


Install

Remote (no-install, for web-based clients)

Connect your MCP-compatible host to the hosted Streamable HTTP endpoint:

https://mcp.openvan.camp/mcp

No authentication. Attribution is automatic (?source=mcp-server-sse). Intended for ChatGPT Apps SDK, browser-based agents, and serverless integrations.

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "openvan": {
      "command": "npx",
      "args": ["-y", "@openvan/mcp-server"]
    }
  }
}

Restart Claude Desktop. The tools should appear in the 🔧 panel.

Cursor / Windsurf / Continue

Add to your MCP config:

{
  "openvan": {
    "command": "npx",
    "args": ["-y", "@openvan/mcp-server"]
  }
}

Any MCP-compatible host

The server speaks MCP over stdio. Run:

npx -y @openvan/mcp-server

Tools

| Tool | Description | |---|---| | get_fuel_prices | Current retail fuel prices per country | | compare_fuel_prices | Compare one fuel type across 2–10 countries | | find_cheapest_fuel | Top cheapest countries by fuel type, filterable by region | | get_vansky_weather | VanSky score, solar yield, 7-day forecast for one country | | list_vansky_top | Top N countries by VanSky score today | | list_events | Vanlife events (expos, festivals, meetups) with filters | | get_event | Details for one event by slug | | search_stories | Aggregated vanlife news (7 languages, 400+ sources) | | compare_vanbasket | Food price index comparison between two countries | | get_vanbasket | Food price index details for one country | | get_currency_rate | Currency conversion between 150+ currencies |

All tools are readOnlyHint: true and openWorldHint: false. Safe to allow by default.


Example prompts

  • "What's the cheapest diesel in Europe right now?"
  • "Compare fuel prices between Germany, France, and Spain."
  • "Is Spain a good place to van-camp this week? What about solar yield?"
  • "Find upcoming vanlife festivals in Germany this summer."
  • "Convert 500 EUR to Turkish lira using today's rate."
  • "How expensive is food in Portugal vs Turkey?"

How it works

The server is a thin TypeScript wrapper around the public OpenVan.camp REST API:

MCP host ─► @openvan/mcp-server ─► https://openvan.camp/api/*

Every outbound request automatically appends ?source=mcp-server for attribution tracking and sets a descriptive User-Agent (openvan-mcp/0.1.0). This helps us credit MCP integrations in public reports and segment traffic.

Configuration

Environment variables (optional):

  • OPENVAN_API_URL — override the base URL (default https://openvan.camp)
  • OPENVAN_SOURCE — override the attribution tag (default mcp-server)

Rate limits

120 requests / minute per IP. Responses include X-RateLimit-Remaining headers. If you hit the limit, contact [email protected] to request a higher quota for your integration.


Development

git clone https://github.com/Kopaev/openvan-camp-public-api.git
cd openvan-camp-public-api/mcp-server
npm install
npm run build
npm start

Smoke-test via stdio:

printf '%s\n%s\n%s\n' \
  '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"0.0.0"}}}' \
  '{"jsonrpc":"2.0","method":"notifications/initialized"}' \
  '{"jsonrpc":"2.0","id":2,"method":"tools/list"}' \
  | node dist/index.js

License

MIT for this server. Data returned by the server is licensed CC BY 4.0 — please attribute OpenVan.camp when using it.

Links

  • Website: https://openvan.camp
  • AI agents landing: https://openvan.camp/ai
  • OpenAPI schema: https://openvan.camp/.well-known/openapi.json
  • Custom GPT: https://chatgpt.com/g/g-69e723ddf2f48191b828b461cd7f57e0-openvan-travel-assistant
  • Contact: [email protected]