list_campsites
Pack: recreation-gov · Endpoint: https://gateway.pipeworx.io/recreation-gov/mcp
List the individual campsites within a Recreation.gov facility (campground) by FacilityID. Returns campsite IDs, names, type (e.g. “TENT ONLY”, “RV”), loop, reservability, and type of use. Example: list_campsites({ facility_id: “232447” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
facility_id | string | yes | RIDB FacilityID of the campground, e.g. “232447” |
limit | number | no | Max campsites to return (default 20, max 50) |
_apiKey | string | no | Optional — your own Recreation.gov RIDB API key for higher limits; omit to use the shared Pipeworx key. |
Example call
curl -X POST https://gateway.pipeworx.io/recreation-gov/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_campsites","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"recreation-gov": {
"url": "https://gateway.pipeworx.io/recreation-gov/mcp"
}
}
}
See Getting Started for client-specific install steps.