Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Mcp Dice

    A MCP server enabling LLMs to roll dice

    3 stars
    Python
    Updated Oct 16, 2025

    Table of Contents

    • Features
    • Installation
    • Installing via Smithery
    • Usage
    • Basic Command Line Usage
    • Input Format
    • Claude Desktop Configuration
    • Location
    • Examples
    • Development and Debugging
    • Installing Development Dependencies
    • Running Tests
    • Using MCP Inspector
    • Claude Desktop Configuration for Development

    Table of Contents

    • Features
    • Installation
    • Installing via Smithery
    • Usage
    • Basic Command Line Usage
    • Input Format
    • Claude Desktop Configuration
    • Location
    • Examples
    • Development and Debugging
    • Installing Development Dependencies
    • Running Tests
    • Using MCP Inspector
    • Claude Desktop Configuration for Development

    Documentation

    mcp-dice: A MCP Server for Rolling Dice

    smithery badge

    screenshot

    A Model Context Protocol (MCP) server that enables Large Language Models (LLMs) to roll dice. It accepts standard dice notation (e.g., 1d20) and returns both individual rolls and their sum.

    Features

    • Supports standard dice notation (e.g., 1d20, 3d6, 2d8+1)
    • Returns both individual rolls and the total sum
    • Easy integration with Claude Desktop
    • Compatible with MCP Inspector for debugging

    Installation

    Installing via Smithery

    To install Dice Roller for Claude Desktop automatically via Smithery:

    bash
    npx @smithery/cli install mcp-dice --client claude

    Make uv available: https://docs.astral.sh/uv/getting-started/installation/

    Usage

    Basic Command Line Usage

    shell
    # Using uvx
    uvx mcp-dice

    Input Format

    The server accepts a JSON object with a notation field:

    json
    {
      "notation": "2d6+3"
    }

    Example responses:

    json
    {
      "rolls": [
        3,
        1
      ],
      "sum": 4,
      "modifier": 3,
      "total": 7,
      "notation": "2d6+3",
      "timestamp": "2024-12-03T16:36:38.926452"
    }

    Claude Desktop Configuration

    Location

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%/Claude/claude_desktop_config.json

    Examples

    macOS Configuration

    json
    {
      "mcpServers": {
        "dice": {
          "command": "uvx",
          "args": ["mcp-dice"]
        }
      }
    }

    WSL Configuration

    json
    {
      "mcpServers": {
        "dice": {
          "command": "wsl",
          "args": [
            "-e",
            "zsh",
            "-lc",
            "uvx mcp-dice"
          ]
        }
      }
    }

    Note: Replace zsh with your login shell.

    Development and Debugging

    Installing Development Dependencies

    shell
    # Clone the repository
    git clone https://github.com/yourusername/mcp-dice
    cd mcp-dice
    
    # Install development dependencies
    uv pip install -e ".[dev]"

    Running Tests

    shell
    uv run pytest

    Using MCP Inspector

    The MCP Inspector is a useful tool for debugging your MCP server. Install and run it using npm:

    shell
    npx @modelcontextprotocol/inspector uvx mcp-dice

    Claude Desktop Configuration for Development

    macOS configuration (local dev)

    json
    {
      "mcpServers": {
        "dice": {
          "command": "uv",
          "args": [
            "run",
            "--directory",
            "path/to/mcp-dice-repo",
            "mcp-dice"
          ]
        }
      }
    }

    Note: Replace path/to/mcp-dice-repo with the path to the repository on your filesystem.

    Windows (WSL) configuration (local dev)

    json
    {
      "mcpServers": {
        "dice": {
          "command": "wsl",
          "args": [
            "-e",
            "zsh",
            "-lc",
            "uv run --directory path/to/mcp-dice-repo mcp-dice"
          ]
        }
      }
    }

    Note: Replace zsh with your login shell. Also, replace path/to/mcp-dice-repo with the path to the repository on your WSL filesystem.

    Similar MCP

    Based on tags & features

    • AD

      Adls Mcp Server

      Python·
      4
    • BO

      Books Mcp Server

      Python·
      5
    • CH

      Chuk Mcp Linkedin

      Python00
    • PU

      Pursuit Mcp

      Python00

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • AD

      Adls Mcp Server

      Python·
      4
    • BO

      Books Mcp Server

      Python·
      5
    • CH

      Chuk Mcp Linkedin

      Python00
    • PU

      Pursuit Mcp

      Python00

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k