Security
Generate cryptographically secure one-time numeric codes (SMS / email verification, raffle codes, event pins) with configurable length (3-10 digits), bulk output, optional ambiguous-digit exclusion, and an optional expiry countdown. Uses crypto.randomInt, not Math.random.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/otp-generator' \
-H 'Content-Type: application/json' \
-d '{"digits":"6","customDigits":5,"count":5,"grouping":true,"excludeAmbiguous":true,"expiresIn":"300"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/otp-generator| Name | Type | Required | Description |
|---|---|---|---|
| digits | select | No | — |
| customDigits | number | No | — |
| count | number | No | — |
| grouping | checkbox | No | — |
| excludeAmbiguous | checkbox | No | — |
| expiresIn |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-otp-generator": {
"name": "otp-generator",
"description": "Generate cryptographically secure one-time numeric codes (SMS / email verification, raffle codes, event pins) with configurable length (3-10 digits), bulk output, optional ambiguous-digit exclusion, and an optional expiry countdown. Uses crypto.randomInt, not Math.random.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=otp-generator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "otp-generator",
"arguments": {
"digits": "6",
"customDigits": 5,
"count": 5,
"grouping": true,
"excludeAmbiguous": true,
"expiresIn": "300"
}
}
}Questions or issues? Contact [email protected]
| select |
| No |
| — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}