parse_ulid
Pack: ulid · Endpoint: https://gateway.pipeworx.io/ulid/mcp
Validate a ULID and extract its embedded creation timestamp (ISO date + epoch ms) and the random component. Keyless, offline.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ulid | string | yes | A 26-character ULID. |
Example call
Arguments
{
"ulid": "01ARZ3NDEKTSV4RRFFQ69G5FAV"
}
curl
curl -X POST https://gateway.pipeworx.io/ulid/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"parse_ulid","arguments":{"ulid":"01ARZ3NDEKTSV4RRFFQ69G5FAV"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('parse_ulid', {
"ulid": "01ARZ3NDEKTSV4RRFFQ69G5FAV"
});
More examples
{
"ulid": "01BX5ZZKBK7XBRC2Y2HF1K9R1M"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ulid": {
"url": "https://gateway.pipeworx.io/ulid/mcp"
}
}
}
See Getting Started for client-specific install steps.