Skip to content

Uuid Generate

Generators REST API MCP

Generate one or more UUIDs: random v4 (default), time-ordered v7 (RFC 9562), time-based v1 (RFC 4122, with a random node id rather than a MAC address), or the nil UUID. The same four versions the web page offers.

This page documents the HTTP endpoint POST /api/tools/uuid-generate/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/uuid-generate/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/uuid-generate/execute \
  -H "Content-Type: application/json" \
  -d '{
    "count": 1
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/uuid-generate

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
count integer no How many UUIDs to generate (1-100). Defaults to 1. Default: 1.
version string (v4 | v7 | v1 | nil) no UUID version: v4 (random), v7 (Unix millisecond timestamp + random, sortable), v1 (100-nanosecond timestamp + clock sequence + random multicast node id), or nil (all zeros). Defaults to v4. Default: "v4".
uppercase boolean no Return the UUIDs in uppercase. Defaults to false. Default: false.

Example arguments (verified)

{
  "count": 1
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:uuid_generate after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Uuid Generate →

More Generators tools