by campertunity
Provides tools for AI models to search, retrieve details, check availability, and book camping and outdoor recreation places.
Mcp Server For Campertunity implements the Model Context Protocol, exposing a set of tools that let AI agents interact with camping and outdoor recreation data. It enables searching for campsites, fetching detailed information, checking site availability, and making bookings directly through API calls.
CAMPERTUNITY_API_KEY
with your key.serverConfig
below).place-search
, place-details
, place-availability
, place‑book
) with the required parameters in your AI model or agent workflow.Q: What limits apply to the place-search
tool?
A: Default limit is 50 results; you can request up to 1000 per call.
Q: Which environment variable holds the API key?
A: CAMPERTUNITY_API_KEY
.
Q: Can I cache the data returned by the server? A: No. The data must be used in real time and not stored or redistributed.
Q: How do I specify the search radius?
A: Use the radius
parameter in kilometers (default 20 km).
Q: Are there separate tools for RV and tent sites?
A: Yes, filter by tags such as rv
, tent
, cabin
, etc., within the filters
array.
This server implements the Model Context Protocol (MCP) for Campertunity, providing AI models with tools to interact with camping and outdoor recreation data.
{
"mcpServers": {
"campground-search-mcp-server": {
"command": "npx",
"args": ["-y", "campertunity-mcp-server@latest"],
"env": {
"CAMPERTUNITY_API_KEY": "your_api_key_here"
}
}
}
}
CAMPERTUNITY_API_KEY=your_api_key_here
Search for camping places with various filters and criteria.
limit
: Number of results (default: 50, max: 1000)startDate
: Start date for availability (YYYY-MM-DD)endDate
: End date for availability (YYYY-MM-DD)adults
: Number of adults (default: 1)children
: Number of children (default: 0)latitude
: Center point latitudelongitude
: Center point longituderadius
: Search radius in kilometers (default: 20)filters
: Array of tags to filter by (see Tag enum below)campgroundDescription
: Natural language description of desired campground featuresGet detailed information about a specific camping place.
placeId
: ID of the place to get details forCheck availability of camping sites at a specific place.
placeId
: ID of the place to checksiteIds
: Optional array of specific site IDs to checkstartDate
: Start date (YYYY-MM-DD)endDate
: End date (YYYY-MM-DD)Book a camping site.
placeId
: ID of the place to bookstartDate
: Start date (YYYY-MM-DD)endDate
: End date (YYYY-MM-DD)adults
: Number of adults (default: 1)children
: Number of children (default: 0)The data provided through these tools is collected from multiple sources and enhanced with AI. To ensure data accuracy and respect intellectual property rights:
For more information, visit campertunity.com
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "campground-search-mcp-server": { "command": "npx", "args": [ "-y", "campertunity-mcp-server@latest" ], "env": { "CAMPERTUNITY_API_KEY": "<YOUR_API_KEY>" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by mattt
Enables AI assistants to retrieve and manage personal macOS data such as calendar events, contacts, messages, reminders, location, maps, and weather through a local MCP server, allowing personalized AI interactions without sending data off‑device.
by nspady
Provides Google Calendar integration for AI assistants, enabling event listing, creation, updating, deletion, free/busy queries, recurring event handling, and smart scheduling via natural language.
by baidu-maps
Offers a comprehensive suite of geospatial APIs and tools for developers and AI agents, enabling geocoding, reverse geocoding, POI search, route planning, weather, traffic, IP location, and real‑time traffic queries via standardized MCP interfaces.
by Omar-V2
Interact with the macOS Calendar through natural‑language commands, enabling creation, querying, and updating of events in a conversational way.
by GongRzhe
Enables LLMs to perform travel-related tasks such as location search, place details lookup, route calculation, and timezone retrieval using Google Maps services.
by zcaceres
Integrates with Google Tasks to list, read, search, create, update, and delete tasks via MCP tools.
by v-3
Interact with Google Calendar to list, create, update, delete events and find free time slots via Claude.
by r-huijts
Provides real-time Dutch railway travel information—including departures, arrivals, journey planning, pricing, and station facilities—through an MCP server that Claude can query.
by TimLukaHorstmann
Provides hourly and daily weather forecasts via the AccuWeather API for Model Context Protocol (MCP) integration with language models.