Pakt Docs
MCP Tools

get_execution_context

Read one bounded page of this authenticated account's active, fully revalidated pakt roots, artifact-derived adapters, and exact flat asset references where applicable.

Read Execution-Ready State

Use this tool to discover the active roots, venue request formats, and allowlists usable by this account now.

At a Glance

FieldMeaning
Side effectsNone. This is a read-only execution call.
Next stepBuild one complete supported request and call propose_execution with the selected root.

Protocol Behavior

Read one bounded page of this authenticated account's active, fully revalidated pakt roots, artifact-derived adapters, and exact flat asset references where applicable. A Hyperliquid asset is its native index on the named network, never a Pakt-specific id. It does not claim a planner or strategy capability. AccountId and environment are server-derived. Wallet and operation-authorization readiness are checked only when propose_execution enters the configured hosted authorizer. This call is read-only and never creates an account, provisions a wallet, proves, signs, or submits.

Arguments

ArgumentTypeRequiredConstraints
cursorstringnominimum length 64; maximum length 64; pattern ^[0-9a-f]{64}$
page_sizeintegernominimum 1; maximum 10

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": {
    "cursor": {
      "description": "Exclusive pakt-root cursor returned as next_cursor by the preceding page.",
      "maxLength": 64,
      "minLength": 64,
      "pattern": "^[0-9a-f]{64}$",
      "type": "string"
    },
    "page_size": {
      "default": 10,
      "maximum": 10,
      "minimum": 1,
      "type": "integer"
    }
  },
  "type": "object"
}

On this page