random_shuffle
Shuffle any list of items into a new random order using this tool, ideal for generating randomized sequences efficiently. Part of the Random Number MCP server for random generation tasks.
Instructions
Return a new list with items in random order.
Args: items: List of items to shuffle
Returns: New list with items in random order
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes |
Input Schema (JSON Schema)
{
"properties": {
"items": {
"items": {},
"title": "Items",
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}