MCP Rand
by turlockmike
roll_dice
Roll a set of dice using standard dice notation (e.g., "2d6" for two six-sided dice, "3d6+5" for three six-sided dice plus 5)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dice | Yes | Array of dice to roll |
Input Schema (JSON Schema)
{
"properties": {
"dice": {
"description": "Array of dice to roll",
"items": {
"description": "Dice notation (e.g., \"2d6\", \"1d20\", \"4d4\")",
"type": "string"
},
"type": "array"
}
},
"required": [
"dice"
],
"type": "object"
}