Skills pipeworx-dadjokes
The finest dad jokes on the internet — random, searchable, and groan-worthy from icanhazdadjoke.com
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brucegutman/pipeworx-dadjokes" ~/.claude/skills/clawdbot-skills-pipeworx-dadjokes && rm -rf "$T"
manifest:
skills/brucegutman/pipeworx-dadjokes/SKILL.mdsource content
Dad Jokes
Why did the scarecrow win an award? Because he was outstanding in his field. This pack serves up dad jokes from icanhazdadjoke.com — the internet's premier repository of wholesome, groan-inducing humor.
Tools
— A random dad joke, ready to deployrandom_joke
— Search the collection by keyword (e.g., "cat", "pizza", "coffee")search_jokes
— Fetch a specific joke by its IDget_joke
Ideal for
- Lightening the mood in a conversation
- "Tell me a joke" requests in chatbots
- Slack/Discord bots that post daily jokes
- Teaching moments about search and APIs (everyone loves a good dad joke)
Example
curl -s -X POST https://gateway.pipeworx.io/dadjokes/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_jokes","arguments":{"term":"coffee","limit":3}}}'
{ "results": [ { "id": "71wsPKeF6h", "joke": "I just got my doctor's test results and I'm really upset. Turns out, I'm not a doctor." } ], "total_jokes": 1 }
Setup
{ "mcpServers": { "pipeworx-dadjokes": { "command": "npx", "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/dadjokes/mcp"] } } }