Skills pipeworx-catfacts
Random cat facts and breed information from the Cat Facts API
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-catfacts" ~/.claude/skills/openclaw-skills-pipeworx-catfacts && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/brucegutman/pipeworx-catfacts" ~/.openclaw/skills/openclaw-skills-pipeworx-catfacts && rm -rf "$T"
manifest:
skills/brucegutman/pipeworx-catfacts/SKILL.mdsource content
Cat Facts
Did you know cats spend 70% of their lives sleeping? Pull random feline trivia, batch multiple facts, or browse cat breeds with details on country of origin, coat type, and temperament.
Tools
— One random cat factget_fact
— Multiple random cat facts (default 5)get_facts
— Cat breeds with country, origin, coat, and pattern infolist_breeds
Great for
- Spicing up a chatbot with fun cat trivia
- Building a "cat fact of the day" notification
- Educational apps about different cat breeds
- Testing or prototyping when you need harmless sample data
Example
curl -s -X POST https://gateway.pipeworx.io/catfacts/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_facts","arguments":{"count":3}}}'
MCP config
{ "mcpServers": { "pipeworx-catfacts": { "command": "npx", "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/catfacts/mcp"] } } }