Pipeworx bored
v1.0.0Beat boredom with random activity suggestions — filter by type (education, social, cooking) or group size
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description describe an activity suggestion pack and the SKILL.md shows only network calls to a Pipeworx gateway to fetch activities; requiring curl is appropriate for the provided curl examples.
Instruction Scope
Instructions are limited to calling an external API (https://gateway.pipeworx.io/bored/mcp) to retrieve activity suggestions and presenting results. The SKILL.md does not instruct the agent to read local files, access unrelated environment variables, or exfiltrate other data.
Install Mechanism
There is no install spec and no code files (lowest-risk). However, the documentation includes an example using `npx mcp-remote@latest ...` which would download and run a package at runtime if the agent chose that path; this is not required for basic function but is a potential runtime risk if used without vetting.
Credentials
The skill declares no required environment variables or credentials. The functionality (public activity suggestions) does not justify any secret access, and none are requested.
Persistence & Privilege
The skill does not request always:true and has no install-time persistence. Autonomous invocation is allowed by default (platform behavior) but is not combined with elevated privileges or broad credential access.
Assessment
This skill appears coherent and minimal: it sends simple JSON-RPC requests to a Pipeworx gateway to get activity suggestions and does not request credentials or local file access. Before installing, verify you trust the endpoint (gateway.pipeworx.io / pipeworx.io). Avoid sending any sensitive or private data to the skill's API. If you or your agent will use the provided `npx mcp-remote@latest` example, be aware that npx will fetch and execute remote code at runtime—only do that if you trust the package source or pin a vetted version.Like a lobster shell, security has layers — review code before you run it.
Runtime requirements
🎲 Clawdis
Binscurl
latest
Bored API
Nothing to do? This pack suggests activities to try — from solo hobbies to group outings. Filter by category or participant count, or just roll the dice and see what comes up.
Tools
| Tool | Description |
|---|---|
random_activity | Get a completely random activity suggestion |
activity_by_type | Filter by category: education, recreational, social, diy, charity, cooking, relaxation, music, busywork |
activity_by_participants | Suggest an activity for a specific group size (1 for solo, 2 for pairs, etc.) |
Perfect for
- "I'm bored" moments — instant suggestion with no decision fatigue
- Team-building tools that need icebreaker activity ideas
- Daily challenge apps that rotate through activity types
- Onboarding flows that want to show a fun placeholder activity
Quick example
Get a social activity for a group of 4:
curl -s -X POST https://gateway.pipeworx.io/bored/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"activity_by_participants","arguments":{"participants":4}}}'
{
"activity": "Start a book club",
"type": "social",
"participants": 4,
"accessibility": 0.2,
"price": 0.1
}
Connect
{
"mcpServers": {
"pipeworx-bored": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/bored/mcp"]
}
}
}
Comments
Loading comments...
