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
| 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 | number | Accessibility rating (0-1 scale) |
duration | string | null | Activity duration or null |
kid_friendly | boolean | null | Whether activity is kid friendly or null |
link | string | null | Related link or null |
key | string | null | 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": "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.