Skip to main content
Glama

seal_heartbeat

Idempotent

Extend the lease on an open intent while a slow effect is running, so the claim is not reclaimed mid-flight and another caller cannot take over. Call periodically before expiry.

Instructions

Extend the lease while a slow effect is still running, so the claim is not reclaimed mid-flight and a second caller cannot run it. Call it periodically (well inside the lease) between seal_admit and seal_commit. Returns {lease_until: }. Only the fence holder may extend, and only while the intent is still open; after the lease expired or the intent closed it is refused (isError). Safe to repeat.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fenceYesThe fence token returned with fresh=true from seal_admit. Proves you are the one caller admitted for this intent; refused if it is not yours or the claim was reclaimed.
intentYesThe intent id returned by seal_admit / seal_propose (also `intent` on any cert). Identifies one logical action.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changed
    • addedInput schema / properties / fence / description
      Added value: +"The fence token returned with fresh=true from seal_admit. Proves you are the one caller admitted for this intent; refused if it is not yours or the claim was reclaimed."
    • addedInput schema / properties / intent / description
      Added value: +"The intent id returned by seal_admit / seal_propose (also `intent` on any cert). Identifies one logical action."
  2. First observedv0.4.0

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the annotations (idempotentHint=true), the description explains why it is safe to repeat, what the return value is, and the conditions under which it fails ('Only the fence holder may extend... refused'). It also reveals the underlying purpose of preventing reclamation mid-flight, which adds meaningful behavioral context.

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

Conciseness5/5

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

The description is three sentences and front-loads the core behavior, then adds lifecycle guidance, return shape, failure conditions, and idempotency. Every sentence earns its place without redundancy.

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

Completeness5/5

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

Given the absence of an output schema, the description correctly documents the return value ({lease_until}), the ownership requirement, the failure cases, and repeatability. For a lease-extension tool with clear annotations, nothing important is missing.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description reinforces their role in the lease-extending flow but does not add substantial new parameter-level meaning beyond what is already present.

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

Purpose5/5

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

The description states a specific verb ('Extend the lease') and a clear resource (a lease for an intent), and explicitly situates it between seal_admit and seal_commit. This distinguishes it from the sibling tools by lifecycle phase and purpose.

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

Usage Guidelines4/5

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

It clearly says when to call it ('periodically well inside the lease between seal_admit and seal_commit') and when it is refused (after lease expiry or intent close). It does not explicitly name alternative tools for when the effect is finished, but the lifecycle placement gives strong contextual guidance.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aurumflux20/seal'

If you have feedback or need assistance with the MCP directory API, please join our Discord server