token-generator
Create secure random tokens with customizable length and character sets, including alphanumeric, hex, base64, or custom options for enhanced security.
Instructions
Generate secure random tokens
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| charset | No | Character set to use | |
| customChars | No | Custom characters (required if charset is 'custom') | |
| length | No | Token length | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "charset": {
      "description": "Character set to use",
      "enum": [
        "alphanumeric",
        "hex",
        "base64",
        "custom"
      ],
      "type": "string"
    },
    "customChars": {
      "description": "Custom characters (required if charset is 'custom')",
      "type": "string"
    },
    "length": {
      "description": "Token length",
      "type": "number"
    }
  },
  "type": "object"
}