Development
Generate RFC 9562 UUIDs — including the modern v6, v7 and v8 that most generators lack — or decode any UUID back to its version, variant and embedded timestamp.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/uuid-version-generator' \
-H 'Content-Type: application/json' \
-d '{"mode":"generate","version":"v5","count":5,"uppercase":false,"namespace":"dns","name":"example.com","uuidToDecode":"e.g. 017f22e2-79b0-7cc3-98c4-dc0c0c07398f"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/uuid-version-generator| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | Yes | — |
| version | select | Yes | — |
| count | number | No | — |
| uppercase | checkbox | No | — |
| namespace | select | No | — |
| name |
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-uuid-version-generator": {
"name": "uuid-version-generator",
"description": "Generate RFC 9562 UUIDs — including the modern v6, v7 and v8 that most generators lack — or decode any UUID back to its version, variant and embedded timestamp.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=uuid-version-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": "uuid-version-generator",
"arguments": {
"mode": "generate",
"version": "v5",
"count": 5,
"uppercase": false,
"namespace": "dns",
"name": "example.com",
"uuidToDecode": "e.g. 017f22e2-79b0-7cc3-98c4-dc0c0c07398f"
}
}
}Questions or issues? Contact [email protected]
| text |
| No |
| — |
| uuidToDecode | text | No | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}