Skip to main content
Glama

get_resume_context

Read-only

Read checkpoint, its stored memory_references (current/historical/version_not_found/unavailable), task, space, assigned tasks, leases and explicit entry references. Non-atomic observed state; never executes work or renews leases. Follow returned component cursors with their original methods.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNo
replayedNo
operationNo
truncatedNo
next_cursorNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "description": "Structured result for get_resume_context. Resource fields vary by detail, permissions and operation. Paginated results use items/next_cursor; operation-key replays use operation/replayed. Failures have error and the MCP result has isError=true. See get_help for this tool's contract.",
      +  "properties": {
      +    "error": {
      +      "properties": {
      +        "code": {
      +          "type": "string"
      +        },
      +        "help": {
      +          "type": "string"
      +        },
      +        "message": {
      +          "type": "string"
      +        },
      +        "next_action": {
      +          "type": "string"
      +        },
      +        "retry_after_seconds": {
      +          "type": "integer"
      +        }
      +      },
      +      "required": [
      +        "code",
      +        "message",
      +        "next_action",
      +        "help"
      +      ],
      +      "type": "object"
      +    },
      +    "next_cursor": {
      +      "type": "string"
      +    },
      +    "operation": {
      +      "type": "object"
      +    },
      +    "replayed": {
      +      "type": "boolean"
      +    },
      +    "truncated": {
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
  2. Added

TDQS

A3.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, non-destructive, closed-world, and the description adds real behavioral context beyond them: the state is 'Non-atomic observed state' and the call 'never executes work or renews leases.' Those two facts prevent an agent from mistaking this for a lease-refresh or action-triggering call, which is genuinely valuable given the 'resume' framing.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight sentences: the first front-loads the payload contents, the second delivers the behavioral caveats and the continuation rule. No filler, and the most decision-relevant caveat (non-atomic, no side effects) is placed where it is easily scanned.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists, so return shape need not be documented, and the annotations cover the safety profile. The description still adds the pagination continuation rule and the non-atomic/no-side-effect guarantee, which are the non-obvious facts needed to call it correctly; only the input parameter semantics remain thin.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must carry parameter meaning, but it mostly lists what is returned rather than explaining inputs. It obliquely references the 'checkpoint' and 'explicit entry references' parameters and the memory_reference states, but leaves limit, max_tokens, task_id, and space_id entirely unexplained even though max_tokens governs a BUDGET_TOO_SMALL retry path.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Read') plus a concrete enumeration of the resource state it returns (checkpoint, memory_references with four lifecycle states, task, space, assigned tasks, leases, entry references). An agent can tell this is a composite resume-context reader rather than a simple entity getter. It stops short of naming which sibling to use instead when a narrower read is wanted.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage through 'Follow returned component cursors with their original methods,' which tells the caller how to continue after reading. However it never states when this composite read is preferable over narrower siblings like get_space, get_memory, or get_operation, so the selection guidance is inferred rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources