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
| Field | Type | Description |
|---|---|---|
activity | string | Activity name or description |
type | string | Activity category |
participants | number | Number of participants |
price | number | Price range (0-1 scale) |
accessibility | string | Accessibility rating (0-1 scale) |
availability | number | |
duration | string | Activity duration or null |
kid_friendly | boolean | Whether activity is kid friendly or null |
link | string | Related link or null |
key | string | Activity 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.