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-rickmorty" ~/.claude/skills/openclaw-skills-pipeworx-rickmorty && 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-rickmorty" ~/.openclaw/skills/openclaw-skills-pipeworx-rickmorty && rm -rf "$T"
manifest:
skills/brucegutman/pipeworx-rickmorty/SKILL.mdsource content
Rick and Morty
Wubba lubba dub dub! Query the Rick and Morty universe -- characters, locations, and episodes from all seasons of the show.
Commands
| Tool | What it does |
|---|---|
| Find characters by name (returns status, species, gender, origin, location, episode count) |
| Full character details by ID |
| Location details by ID (name, type, dimension, resident count) |
| Episode details by ID (name, air date, episode code, character count) |
Example: look up Rick Sanchez
curl -X POST https://gateway.pipeworx.io/rickmorty/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_character","arguments":{"id":1}}}'
Handy IDs
- Character 1: Rick Sanchez
- Character 2: Morty Smith
- Location 1: Earth (C-137)
- Episode 1: Pilot (S01E01)
{ "mcpServers": { "rickmorty": { "url": "https://gateway.pipeworx.io/rickmorty/mcp" } } }