validate_uuid

Pack: uuid · Endpoint: https://gateway.pipeworx.io/uuid/mcp

Validate and parse a UUID (keyless, offline): checks the format and returns the version (1-8), variant, whether it is nil/max, and — for time-based versions (v1, v7) — the embedded timestamp as an ISO date.

Parameters

NameTypeRequiredDescription
uuidstringyesA UUID, e.g. “550e8400-e29b-41d4-a716-446655440000”.

Example call

Arguments

{
  "uuid": "550e8400-e29b-41d4-a716-446655440000"
}

curl

curl -X POST https://gateway.pipeworx.io/uuid/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"validate_uuid","arguments":{"uuid":"550e8400-e29b-41d4-a716-446655440000"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('validate_uuid', {
  "uuid": "550e8400-e29b-41d4-a716-446655440000"
});

More examples

{
  "uuid": "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "uuid": {
      "url": "https://gateway.pipeworx.io/uuid/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026