Pakt Docs
MCP Tools

list_pakts

Read one bounded, root-ordered page of passkey-authorized lifecycle summaries for this authenticated account in this deployment environment only.

Read Lifecycle State Only

Use this tool to inspect the current account’s passkey-authorized Pakt lifecycle records.

At a Glance

FieldMeaning
Side effectsNone. This is a read-only lifecycle call.
Next stepUse get_execution_context before constructing an action; it performs the execution-specific checks.

Protocol Behavior

Read one bounded, root-ordered page of passkey-authorized lifecycle summaries for this authenticated account in this deployment environment only. The list path fetches no canonical SSZ and makes no execution-adapter or artifact-validity claim; it strictly verifies stored passkey evidence over environment/account/root. A corrupt row is omitted and reported in row_errors without hiding other verified rows. The configured hosted sign-only path performs full artifact validation before consuming an active root; an unconfigured deployment reports NOT_INTEGRATED.

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