Skills pipeworx-dogsapi
Detailed dog breed encyclopedia — weight ranges, life spans, temperament, and breed groups from dogapi.dog
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-dogsapi" ~/.claude/skills/clawdbot-skills-pipeworx-dogsapi && rm -rf "$T"
manifest:
skills/brucegutman/pipeworx-dogsapi/SKILL.mdsource content
Dogs API — Breed Encyclopedia
A structured database of dog breeds with detailed attributes: weight ranges, life spans, hypoallergenic status, temperament descriptions, and breed group classifications. Also includes random dog facts.
Tools
— Paginated list of breeds with weight, life span, and hypoallergenic flaglist_breeds
— Full details for a specific breed by IDget_breed
— Random dog facts (default 10, max 100)list_facts
— All breed groups (Sporting, Herding, Terrier, etc.)get_groups
Use cases
- "Is a Poodle hypoallergenic?" — look up the breed and check the flag
- Building a breed comparison tool for prospective dog owners
- Enriching a pet adoption platform with breed data
- Fun facts for a pet-themed chatbot or newsletter
Example: browse breeds
curl -s -X POST https://gateway.pipeworx.io/dogsapi/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_breeds","arguments":{"page":1}}}'
MCP config
{ "mcpServers": { "pipeworx-dogsapi": { "command": "npx", "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/dogsapi/mcp"] } } }