Dice 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., "@Dice MCPMake a Dexterity check with a +3 modifier."
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.
Dice MCP
dice-mcp is a local Model Context Protocol (MCP) server for tabletop role-playing dice rolls. It uses Streamable HTTP at http://127.0.0.1:8000/mcp.
Run locally
This project uses uv. From the repository root, start the server with:
uv run dice-mcpThe server listens only on localhost. Leave it running while using it from an MCP host, then stop it with Ctrl+C.
Related MCP server: Dice Roller MCP Server
Tool
roll_dice
Roll one or more dice and add a modifier.
Parameter | Type | Description |
| integer | Number of sides on each die. |
| integer | Number of dice to roll. |
| integer | Optional value added to the sum of the rolls; defaults to |
| boolean | Optional; rerolls a die that reaches its maximum value. Defaults to |
The result contains displayable individual rolls, their unmodified sum, the modifier, and the final total. An exploded die is marked with *; for example, an exploding d6 result might be {"rolls": ["6*", "3"], "sum": 9, "modifier": 2, "total": 11}.
Dice formulas
The dice utilities also parse conventional dice notation, ready for a formula-based MCP tool:
from dicemcp.dice import parse_formula, roll_formula
parse_formula("2d20+4")
roll_formula("6W6")Both d/D and the German W/w separator are supported, as are modifiers such as d20-1. An omitted amount means one die.
Prompts
The server provides MCP prompts for common d20 tabletop workflows:
ability_checksaving_throwattack_roll(setadvantage=truefor a D&D attack roll that keeps the higher of2d20)damage_rolladvantage_roll(D&D advantage rolls2d20and keeps the higher die; setdisadvantage=trueto keep the lower die)
They instruct the model to call roll_dice and report the relevant dice and total. They are system-neutral guidance based on familiar d20 conventions.
Add it to LM Studio
Start the server in a terminal first:
uv run dice-mcpThen, in LM Studio, open the Program tab, choose Install, then Edit mcp.json. Add this entry inside mcpServers:
{
"dice-mcp": {
"url": "http://127.0.0.1:8000/mcp"
}
}Save the configuration, enable the server in a chat, and ask a dice-related question such as: “Make a Dexterity check with a +3 modifier.” LM Studio supports local MCP servers from version 0.3.17 and uses Cursor-compatible mcp.json notation; see its MCP server guide for current setup details.
This server cannot be deployed
Maintenance
Related MCP Connectors
Connect any AI to your Foundry VTT world: actors, combat, dice, journals, tokens, compendiums.
Campaign manager for D&D and TTRPG GMs: your AI reads and writes a live typed campaign database.
Characters, campaigns, adventures & worlds for D&D 5e/5.5e, Pathfinder, Savage Worlds, Fate, & more.
Dungeons & Dragons (D&D) and TTRPG companion: SessionKeeper sessions, NPCs, wiki, DM prep.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceProvides cryptographically secure random dice rolls for AI assistants, supporting standard and advanced dice notation for tabletop RPGs and games.8-
- FlicenseNot gradedqualityDmaintenanceEnables dice rolling mechanics for tabletop RPGs including standard dice notation, coin flips, advantage/disadvantage rolls, exploding dice, and maintains a history of recent rolls. Supports D\&D 5e mechanics and various gaming dice types (d4, d6, d8, d10, d12, d20, d100).-
- FlicenseNot gradedqualityDmaintenanceProvides comprehensive dice rolling functionality for tabletop games and RPGs, supporting standard dice notation, D\&D ability score generation, advantage/disadvantage rolls, and skill checks against difficulty classes.-
- AlicenseAqualityDmaintenanceProvides comprehensive TRPG dice rolling functionality including standard notation, advantage/disadvantage mechanics, and success-counting dice pools. It enables users to perform complex dice logic and track roll history through an MCP-compliant interface.2MIT