Skip to main content
Glama

noetic.checkpoint

Create a labeled checkpoint of the current state to restore later.

Instructions

Reference a checkpoint at the current state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelNo
sessionIdNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

D1.5/5.0
Behavior1/5

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

With no annotations at all, the description carries the full burden of behavioral disclosure. It does not state whether this operation reads, writes, mutates, or persists state, nor does it mention side effects, permissions, or reversibility. 'Reference' is too vague to inform the agent of any behavioral traits.

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

Conciseness2/5

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

The description is extremely short, but it is under-specified rather than genuinely concise. It does not use the limited space to convey any useful information, so the sentence does not earn its place with actionable content.

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

Completeness1/5

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

The tool has no output schema, no annotations, and only bare parameter names, so the description is the sole source of context. It fails to explain what a 'checkpoint' is, what operation occurs, how sessionId relates, or what the result looks like, making it completely inadequate for correct invocation.

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

Parameters1/5

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

Schema description coverage is 0%, and the description gives no explanation of what 'label' or 'sessionId' mean or how they should be used. The bare string types provide no semantic information, and the description fails to compensate for the complete lack of parameter documentation.

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

Purpose2/5

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

The description states 'Reference a checkpoint at the current state,' but the verb 'reference' and noun 'checkpoint' are ambiguous—it is unclear whether this creates, retrieves, or marks a checkpoint. It does not distinguish the tool from siblings like noetic.commit, noetic.persist, or noetic.store, which also suggest state-related operations.

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

Usage Guidelines2/5

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

No guidance is provided about when to use this tool versus the many sibling tools. The description does not mention prerequisites, typical workflows, or any conditions that would lead an agent to select this tool over alternatives.

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