ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pipeworx-dnd5e

D&D 5th Edition reference — spells, monsters, classes, and spell lists from the official SRD

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/brucegutman/pipeworx-dnd5e
Or

D&D 5th Edition

The complete D&D 5e Systems Reference Document at your fingertips. Look up spells, monsters, and character classes from the official SRD. Perfect for game night prep, character building, or settling rules disputes.

Tools

ToolDescription
get_spellFull spell details by index name in kebab-case (e.g., "fireball", "magic-missile")
get_monsterMonster stat block including HP, AC, abilities, and actions (e.g., "goblin", "dragon-red-adult")
get_classClass features, proficiencies, and hit dice (e.g., "wizard", "fighter", "cleric")
list_spellsAll available spells with their index names

Perfect for

  • "What does the Fireball spell do?" — instant lookup during a game session
  • Checking a monster's CR, hit points, and special abilities before an encounter
  • Reviewing class features when creating a new character
  • Building a D&D companion app with searchable SRD content

Example: look up Fireball

curl -s -X POST https://gateway.pipeworx.io/dnd5e/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_spell","arguments":{"index":"fireball"}}}'

Returns: name, level, school, casting time, range, components, duration, description, damage at each level, and available classes.

MCP config

{
  "mcpServers": {
    "pipeworx-dnd5e": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/dnd5e/mcp"]
    }
  }
}

Tip

Spell and monster index names use kebab-case. If you're unsure of the exact name, use list_spells first to browse available options.

Metadata

Stars4190
Views1
Updated2026-04-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-brucegutman-pipeworx-dnd5e": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.