DDice RollA Model Context Protocol (MCP) server for simulating dice rolls with support for standard dice notation and Fate/Fudge dice. It provides tools to parse dice notation strings (like "3d6+4") and generate random dice rolls. Integrates with MCP-compatible clients like Claude Desktop and features full input/output validation using Zod schemas. It supports both standard dice (NdS+M format) and Fate/Fudge dice (NdF format) commonly used in tabletop role-playing games.
mcp-so:dice-roll_lpbayliss
View sourceA
100/100 First Seen
Feb 18, 2026
Last Scanned
Feb 20, 2026
Findings
1
Score
100/100
LOW 1
Findings (1)
LOW
npx MCP server without version pin
L58 Detects MCP server configs using npx to run packages without version pinning
"command": "npx" FIX
Pin the npx package in the MCP config to an exact version (e.g., @scope/server@1.2.3). Unpinned npx commands can silently fetch a compromised package version.
FP?
Likely FP if the MCP config is a local development setup example, though unpinned npx in production configs is a real supply chain risk.