pulse_settlement_print
Pack: pulse-verity · Endpoint: https://gateway.pipeworx.io/pulse-verity/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/pulse_settlement_print for the schema, then POST the same URL with its arguments for the data.
The signed index print Pulse RECORDED nearest a past moment — the tool for settling a contract, pricing an option at expiry, or reconstructing what an asset was worth at a specific timestamp. Returns the observation with its original signature intact plus delta_ms, the distance between the time you asked for and the print actually returned; it is the nearest recorded print, never a price synthesised at your exact instant. Accepts ISO-8601 or epoch milliseconds. Requires a Pulse API key via _apiKey. Example: pulse_settlement_print({ symbol: “BTC”, at: “2026-09-16T21:41:46.000Z” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | Asset ticker, e.g. BTC. |
at | string | yes | The moment to price, as ISO-8601 (2026-09-16T21:41:46.000Z) or epoch milliseconds. |
Example call
Arguments
{
"symbol": "BTC",
"at": "2026-09-16T21:46:04.588Z"
}
curl
curl -X POST https://gateway.pipeworx.io/pulse-verity/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pulse_settlement_print","arguments":{"symbol":"BTC","at":"2026-09-16T21:46:04.588Z"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pulse_settlement_print', {
"symbol": "BTC",
"at": "2026-09-16T21:46:04.588Z"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pulse-verity": {
"url": "https://gateway.pipeworx.io/pulse-verity/mcp"
}
}
}
See Getting Started for client-specific install steps.