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

FieldTypeDescription
activitystringActivity name or description
typestringActivity category
participantsnumberNumber of participants
pricenumberPrice range (0-1 scale)
accessibilitystringAccessibility rating (0-1 scale)
availabilitynumber
durationstringActivity duration or null
kid_friendlybooleanWhether activity is kid friendly or null
linkstringRelated link or null
keystringActivity 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": "string",
      "description": "Accessibility rating (0-1 scale)"
    },
    "availability": {
      "type": "number"
    },
    "duration": {
      "type": "string",
      "description": "Activity duration or null"
    },
    "kid_friendly": {
      "type": "boolean",
      "description": "Whether activity is kid friendly or null"
    },
    "link": {
      "type": "string",
      "description": "Related link or null"
    },
    "key": {
      "type": "string",
      "description": "Activity key or null"
    }
  }
}

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 June 24, 2026