generate_uuid
Create cryptographically secure UUIDs (v4) with customizable count and format options, ensuring reliable unique identifiers for various applications.
Instructions
Generate a cryptographically secure UUID (v4)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of UUIDs to generate | |
format | No | UUID format | standard |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 1,
"description": "Number of UUIDs to generate",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"format": {
"default": "standard",
"description": "UUID format",
"enum": [
"standard",
"compact"
],
"type": "string"
}
},
"required": [],
"type": "object"
}