drio
Open app

dice-server MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP Dice Server is a server application designed to simulate the rolling of dice for gaming purposes.

To use the MCP Dice Server, you can connect to the server via its API to roll dice and receive results in real-time.

  • Simulates rolling various types of dice (e.g., D6, D20) - Real-time results for gaming sessions - Easy integration with other gaming applications
  1. Rolling dice for tabletop RPGs like Dungeons & Dragons.
  2. Using the server in online board games that require dice rolls.
  3. Integrating with other gaming platforms for enhanced gameplay.

Add to your AI client

Use these steps to connect dice-server MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-dice-server-norisuke3": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dice-server-norisuke3"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-dice-server-norisuke3": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dice-server-norisuke3"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-dice-server-norisuke3": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dice-server-norisuke3"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-dice-server-norisuke3": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dice-server-norisuke3"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-dice-server-norisuke3": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dice-server-norisuke3"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-dice-server-norisuke3": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-dice-server-norisuke3"
      ]
    }
  }
}

FAQ

Can I roll different types of dice?

Yes! The server supports various dice types including standard D6, D20, and more.

Is there a limit to the number of dice I can roll?

No, you can roll as many dice as needed for your game session.

How do I connect to the MCP Dice Server?

You can connect to the server using the provided API documentation on the GitHub page.