to_timestamp
Pack: timestamp · Endpoint: https://gateway.pipeworx.io/timestamp/mcp
Convert an ISO-8601 (or other parseable) date string to a Unix timestamp (seconds + milliseconds). Keyless, offline.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | yes | A date/time string, e.g. “2026-07-01T12:00:00Z”. |
Example call
Arguments
{
"date": "2026-07-01T12:00:00Z"
}
curl
curl -X POST https://gateway.pipeworx.io/timestamp/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"to_timestamp","arguments":{"date":"2026-07-01T12:00:00Z"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('to_timestamp', {
"date": "2026-07-01T12:00:00Z"
});
More examples
{
"date": "2024-01-01"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"timestamp": {
"url": "https://gateway.pipeworx.io/timestamp/mcp"
}
}
}
See Getting Started for client-specific install steps.