random_activity

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

Get a random activity suggestion to cure boredom. Returns activity name, type, participant count, and price range.

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('random_activity', {});

Response shape

Always returns: activity, type, participants, price, accessibility, duration, kid_friendly, link, key

FieldTypeDescription
activitystringActivity name or description
typestringActivity category
participantsnumberNumber of participants
pricenumberPrice range (0-1 scale)
accessibilitynumberAccessibility rating (0-1 scale)
durationstring | nullActivity duration or null
kid_friendlyboolean | nullWhether activity is kid friendly or null
linkstring | nullRelated link or null
keystring | nullActivity key or null
Full JSON Schema
{
  "type": "object",
  "properties": {
    "activity": {
      "type": "string",
      "description": "Activity name or description"
    },
    "type": {
      "type": "string",
      "description": "Activity category"
    },
    "participants": {
      "type": "number",
      "description": "Number of participants"
    },
    "price": {
      "type": "number",
      "description": "Price range (0-1 scale)"
    },
    "accessibility": {
      "type": "number",
      "description": "Accessibility rating (0-1 scale)"
    },
    "duration": {
      "type": [
        "string",
        "null"
      ],
      "description": "Activity duration or null"
    },
    "kid_friendly": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether activity is kid friendly or null"
    },
    "link": {
      "type": [
        "string",
        "null"
      ],
      "description": "Related link or null"
    },
    "key": {
      "type": [
        "string",
        "null"
      ],
      "description": "Activity key or null"
    }
  },
  "required": [
    "activity",
    "type",
    "participants",
    "price",
    "accessibility",
    "duration",
    "kid_friendly",
    "link",
    "key"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026