get_execution_status
Read the proof/signing status of one operation started by propose_execution.
Poll the Same Operation
Use this tool to poll one authorization job until it returns a signed request, a proved refusal, or a fault.
At a Glance
| Field | Meaning |
|---|---|
| Side effects | Reads an existing job. Venue submission remains with the client. |
| Next step | Submit a signed result unchanged, stop on refusal, or follow the fault’s recovery guidance. |
Protocol Behavior
Read the proof/signing status of one operation started by propose_execution. The operation is bound to the authenticated account even though its random id is unguessable. Pending is a normal result; completion returns either a proved refusal or a submission-ready signed request that Pakt has not submitted. A public venue-metadata failure returns a typed asset_not_allowed or unsupported_market_metadata diagnostic before any signature is released; arbitrary hosted provider details remain redacted.
Arguments
| Argument | Type | Required | Constraints |
|---|---|---|---|
operation_id | string | yes | minimum length 64; maximum length 64; pattern ^[0-9a-f]{64}$ |
Input Schema
The JSON schema below is emitted by the hosted server's real tools/list
catalogue for MCP protocol revision 2025-06-18.
{
"additionalProperties": false,
"properties": {
"operation_id": {
"maxLength": 64,
"minLength": 64,
"pattern": "^[0-9a-f]{64}$",
"type": "string"
}
},
"required": [
"operation_id"
],
"type": "object"
}