dnd-5e-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@dnd-5e-mcpsearch for the fireball spell and show me its page"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
dnd-5e-mcp
MCP server for the D&D 5e community wiki (2014 rules). Lets an LLM search the rule catalogue and pull any page back as Markdown.
Tools
Tool | Description |
| Refresh the page index from the wiki's |
| Fuzzy-match titles in the local index. Returns |
| Fetch one page (by |
Related MCP server: Wikipedia MCP Server
Install
npm install
node test.mjs # self-check (pure + live smoke tests)
node index.js # run the stdio serverUse with an MCP client
Point your client at npx or node in this directory:
{
"mcpServers": {
"dnd-5e-mcp": {
"command": "node",
"args": ["/absolute/path/to/dnd-5e-mcp/index.js"]
}
}
}Typical flow for an LLM:
build_indexonce (or let it build lazily).search_rulesto locate a page by name, e.g."fireball","fighter","bag of holding".get_pagewith the returnedslug, e.g.spell:fireball,fighter,wondrous-items:bag-of-holding.
Notes
2014 rules only. The 2024 ruleset is a separate site (
dnd2024.wikidot.com) and is not covered.Page content is extracted from
#page-content, tables (wiki-content-table) and TOC blocks handled, converted to Markdown.Fetched pages and the index are cached under
.cache/(git-ignored). Delete it to force a rebuild.No auth needed; the wiki is public.
This server cannot be deployed
Maintenance
Related MCP Connectors
Web search, URL content extraction to Markdown, site mapping, and recursive web crawler.
Web search, fetch, extract, and research for AI agents. Markdown output + AI-synthesized answers.
Fetch pages as markdown, search web and news, extract structured data. For AI agents.
Read any web page as clean Markdown for AI agents: fetch, search, metadata, links. SSRF-safe.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables LLMs to fetch and process web content by converting HTML into markdown for easier consumption. It supports chunked reading via pagination and provides configuration options for robots.txt compliance and proxy usage.1MIT
- AlicenseAqualityCmaintenanceEnables LLMs to search for keywords and fetch full page content from Wikipedia across various languages. It provides direct access to Wikipedia information through search and fetch tools.24MIT
- AlicenseAqualityBmaintenanceGives LLMs live, accurate access to Team Fortress Wiki content, enabling search, page retrieval, structured weapon stats, patch notes, and other TF2-specific information.10MIT
- FlicenseNot gradedqualityBmaintenanceEnables LLMs to interact with FIT CTU course materials, including listing subjects, navigating subpages, reading content as Markdown, and performing keyword searches.-