Wraps the free D&D 5th Edition API so Claude can look up spells, monsters, and game rules without authentication. Part of the Pipeworx gateway that bundles 250+ data sources behind a single MCP endpoint. Right now it exposes list_spells for searching by name or level, plus get_spell for full details. You can call tools directly or use ask_pipeworx to handle queries in plain English and let the gateway route them. Useful if you're building D&D character sheets, campaign tools, or just need quick spell lookups during a session. No API keys, no rate limits mentioned, just point your MCP client at the gateway URL.
D&D 5e MCP — wraps the D&D 5th Edition API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
list_spells | Search D&D 5e spells by name or level. Returns spell indices, names, and levels for use with get_spell to fetch full details. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"dnd5e": {
"url": "https://gateway.pipeworx.io/dnd5e/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Dnd5e data" })
The gateway picks the right tool and fills the arguments automatically.
MIT