list_things_to_do

Pack: nps · Endpoint: https://gateway.pipeworx.io/nps/mcp

Activities recommended by the park service — hikes, ranger programs, scenic drives, ranger-led activities. Filter by parkCode or state.

Parameters

NameTypeRequiredDescription
park_codestringnoparkCode (optional)
statestringno2-letter state code (optional)
querystringnoFree-text query (optional)
limitnumberno1-500 (default 25)

Example call

Arguments

{
  "park_code": "zion"
}

curl

curl -X POST https://gateway.pipeworx.io/nps/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_things_to_do","arguments":{"park_code":"zion"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_things_to_do', {
  "park_code": "zion"
});

More examples

{
  "state": "WA",
  "query": "hiking"
}

Response shape

Always returns: total, returned, activities

FieldTypeDescription
totalnumberTotal number of activities
returnednumberNumber of activities in this response
activitiesarrayList of activities and things to do
Full JSON Schema
{
  "type": "object",
  "properties": {
    "total": {
      "type": "number",
      "description": "Total number of activities"
    },
    "returned": {
      "type": "number",
      "description": "Number of activities in this response"
    },
    "activities": {
      "type": "array",
      "description": "List of activities and things to do",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": [
              "string",
              "null"
            ],
            "description": "Activity ID"
          },
          "park_code": {
            "type": [
              "string",
              "null"
            ],
            "description": "Park code"
          },
          "title": {
            "type": [
              "string",
              "null"
            ],
            "description": "Activity title"
          },
          "short_description": {
            "type": [
              "string",
              "null"
            ],
            "description": "Short description of activity"
          },
          "duration": {
            "type": [
              "string",
              "null"
            ],
            "description": "Duration of activity"
          },
          "location": {
            "type": [
              "string",
              "null"
            ],
            "description": "Activity location"
          },
          "fees_apply": {
            "type": [
              "string",
              "null"
            ],
            "description": "Whether fees apply"
          },
          "reservation_required": {
            "type": [
              "string",
              "null"
            ],
            "description": "Whether reservation is required"
          },
          "pets_permitted": {
            "type": [
              "string",
              "null"
            ],
            "description": "Whether pets are permitted"
          },
          "activities": {
            "type": "array",
            "description": "Activity types",
            "items": {
              "type": "string"
            }
          },
          "topics": {
            "type": "array",
            "description": "Related topics",
            "items": {
              "type": "string"
            }
          },
          "url": {
            "type": [
              "string",
              "null"
            ],
            "description": "Activity URL"
          }
        }
      }
    }
  },
  "required": [
    "total",
    "returned",
    "activities"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "nps": {
      "url": "https://gateway.pipeworx.io/nps/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026