Generator
Generate modern unique identifiers: ULID, NanoID, Snowflake and CUID2. Compare formats, decode ULID timestamps and pick the right ID for your system.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/uid-generator' \
-H 'Content-Type: application/json' \
-d '{"type":"ulid","count":5,"length":0,"workerId":1,"datacenterId":1,"epoch":0,"compareUlid":"Paste a ULID to decode its timestamp instead of generating"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/uid-generator| Name | Type | Required | Description |
|---|---|---|---|
| type | select | Yes | — |
| count | number | No | — |
| length | number | No | ID length for NanoID and CUID2. Ignored for ULID/Snowflake. |
| workerId | number | No | Machine/worker id within the datacenter (Snowflake only). |
| datacenterId | number | No | Datacenter id for distributed deployments (Snowflake only). |
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-uid-generator": {
"name": "uid-generator",
"description": "Generate modern unique identifiers: ULID, NanoID, Snowflake and CUID2. Compare formats, decode ULID timestamps and pick the right ID for your system.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=uid-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": "uid-generator",
"arguments": {
"type": "ulid",
"count": 5,
"length": 0,
"workerId": 1,
"datacenterId": 1,
"epoch": 0,
"compareUlid": "Paste a ULID to decode its timestamp instead of generating"
}
}
}Questions or issues? Contact [email protected]
| epoch | number | No | Base epoch in ms. Defaults to Twitter epoch (1288834974657). Snowflake only. |
| compareUlid | text | No | When filled, the tool decodes this ULID and ignores other options. |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}