Vanlife & RV travel data — fuel prices, weather, currency, events, news (free, 11 MCP tools)
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-kopaev-openvan-travel": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Vanlife & RV travel data — fuel prices, weather, currency, events, news (free, 11 MCP tools)
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in maps
Verified cloud cost forecasting for AI agents. AWS, GCP, Azure pricing matrix.
Live Japan travel data: sakura, koyo, fruit picking, flowers & festivals. 1,700+ spots from JMC.
MCP plugin for Claude Code — 3 router tools with invisible middleware for token-optimized code navigation, compression, and safety. Lite mode (instant) or Pro mode (semantic search).
🌱 Agricultural AI: Soil analysis, crop recommendations, weather forecasts. FREE TurboQuant.
MCP Security Weekly
Get CVE alerts and security updates for io.github.Kopaev/openvan-travel and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Free, no-auth API for vanlife data: fuel prices, currency rates, food cost index, vanlife events, and news stories — all in one place, no registration required.
Base URL: https://openvan.camp
Auth: None required
CORS: Enabled
License: CC BY 4.0
MCP Server (for AI agents): mcp-server/ — hosted at https://mcp.openvan.camp/mcp, also npx -y mcp-remote https://mcp.openvan.camp/mcp for Claude Desktop / Cursor / Windsurf. Install docs →
Custom GPT: OpenVan Travel Assistant — live in ChatGPT GPT Store.
| Resource | Purpose |
|---|---|
| This README | Quick overview and code examples |
/docs | Interactive documentation with "Try it out" |
/docs.openapi | Full OpenAPI 3.0 contract (always up to date) |
/docs.postman | Postman collection |
The OpenAPI spec at /docs.openapi is generated from the live codebase and is the authoritative contract. Numbers in this README (country counts, story totals) are approximate and updated periodically — check /api/fuel/prices meta or /api/stories pagination for current totals.
| Endpoint | Description | Coverage |
|---|---|---|
GET /api/fuel/prices | Retail fuel prices (gasoline, diesel, LPG, E85) | 120+ countries |
GET /api/currency/rates | Exchange rates relative to EUR | 150+ currencies |
GET /api/vanbasket/countries | Food price index relative to world average (100 = world avg) | 90+ countries |
GET /api/vanbasket/compare?from=DE&to=TR | Compare food costs between two countries | — |
GET /api/vanbasket/countries/{code} | Single country + historical snapshots | — |
GET /api/events | Vanlife events: expos, festivals, meetups, road trips | 695 events |
GET /api/event/{slug} | Full event details with geo coordinates | — |
GET /api/event/{slug}/articles | Source articles linked to an event | — |
GET /api/stories | News stories aggregated from 200+ publishers | 8200+ stories |
GET /api/story/{slug} | Full story with all source articles and direct links | — |
# Fuel prices
curl https://openvan.camp/api/fuel/prices
# Currency rates (EUR-based)
curl https://openvan.camp/api/currency/rates
# Food price index
curl https://openvan.camp/api/vanbasket/countries
# Upcoming vanlife events in Germany
curl "https://openvan.camp/api/events?country=DE&status=upcoming&locale=en"
# Latest vanlife news stories in English
curl "https://openvan.camp/api/stories?locale=en"
/api/fuel/pricesWeekly retail prices from 45+ official government sources.
Cache TTL: 6 hours. Please poll no faster than every 10 minutes.
curl https://openvan.camp/api/fuel/prices
{
"success": true,
"data": {
"DE": {
"country_code": "DE",
"country_name": "Germany",
"region": "europe",
"currency": "EUR",
"local_currency": "EUR",
"unit": "liter",
"prices": {
"gasoline": 1.79,
"diesel": 1.69,
"lpg": 0.89,
"e85": null,
"premium": null
},
"price_changes": { "gasoline": -0.02, "diesel": 0.01, "lpg": 0.0 },
"fetched_at": "2026-04-05T10:00:00+00:00",
"sources": ["EU Weekly Oil Bulletin", "Fuelo.net"],
"sources_count": 2,
"is_excluded": false
}
},
"meta": {
"total_countries": 121,
"updated_at": "2026-04-05 10:00:00",
"cache_ttl_hours": 6
}
}
Notes:
unit is "liter" for most countries, "gallon" for US and Ecuadoris_excluded: true means the country has heavy fuel subsidies (prices don't reflect market rates)