- Home
- MCP servers
- Campertunity
Campertunity
- typescript
14
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"campertunity-mcp-server": {
"command": "npx",
"args": [
"-y",
"campertunity-mcp-server@latest"
],
"env": {
"CAMPERTUNITY_API_KEY": "YOUR_API_KEY"
}
}
}
}You deploy this MCP server to give AI models access to Campertunity’s camping and outdoor recreation data via a standardized set of tools. It enables practical actions like searching for campsites, retrieving details, checking availability, and booking, all through a consistent interface that integrates with your AI workflows.
How to use
You interact with the server through an MCP client. First, ensure your client is configured to connect to the Campertunity MCP server. You can search for camping places, get detailed place information, verify availability for specific sites and dates, and place a booking. Each tool accepts a defined set of parameters such as dates, party size, location, and filters. Use real-time data via the server and respect the data usage guidelines, including not redistributing or caching data.
How to install
Prerequisites: Node.js and npm must be installed on your system. You should also have an API key from Campertunity to access the data.
- Create a local MCP client configuration file that points to the Campground MCP server.
{
"mcpServers": {
"campground-search-mcp-server": {
"command": "npx",
"args": ["-y", "campertunity-mcp-server@latest"],
"env": {
"CAMPERTUNITY_API_KEY": "your_api_key_here"
}
}
}
}
Additional setup steps
-
Obtain your API key from Campertunity. Your API key is required to authorize the MCP server to access data.
-
Set the environment variable locally or provide it through your process manager so the MCP server can authenticate requests.
Notes on usage and data handling
The server’s data comes from multiple sources and is enhanced with AI. Do not redistribute, save, or modify the data. Always fetch current data in real time through the server and follow licensing and attribution guidelines.
Available tools
place-search
Search for camping places using filters like date range, party size, location, radius, and tags to refine results.
place-details
Retrieve comprehensive information for a specific camping place by its placeId, including features, pricing, and contact details.
place-availability
Check site availability for a given place across a date range and optional site IDs to identify open options.
place-book
Book an available site by specifying placeId, date range, and party size.