Skip to main content
Glama

AIS Agent Flight Recorder — dead-man alerts & resume for AI agents

Server Details

Dead-man switch for AI agents & cron jobs: heartbeat with state capsule, alerts + resume links

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Tool DescriptionsA

Average 3.8/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool maps to a distinct operation: register, heartbeat, fetch capsule, fleet status, and delete. The only slight overlap is fleet_status previewing capsules and fetch_capsule returning the full capsule, but the descriptions make the distinction clear.

Naming Consistency4/5

Most tools follow a verb_noun snake_case pattern (register_monitor, delete_monitor, fetch_capsule), but fleet_status is noun_noun and heartbeat is a bare noun. The naming style is consistent and readable despite the minor deviations.

Tool Count5/5

Five tools is well-scoped for a focused dead-man alert and resume service. Each tool earns its place and covers a necessary part of the workflow without redundancy.

Completeness4/5

The core lifecycle is covered: register, heartbeat, fleet status, delete, and resume via fetch_capsule. The main gap is the lack of an update_monitor operation for changing alert targets or periods, but that can be worked around with delete/re-register.

Available Tools

5 tools
delete_monitorBInspect

Agent Flight Recorder — remove a monitor (needs its secret or the owning key).

ParametersJSON Schema
NameRequiredDescriptionDefault
secretNo
monitor_idYes
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It discloses an authorization requirement ('needs its secret or the owning key') and names the target object. However, it does not state whether deletion is permanent, cascades to related data, or what happens if the monitor doesn't exist.

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 a single, well-structured sentence that leads with the core action, followed by the key prerequisite. There is no padding or redundant repetition of the tool name.

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

Completeness3/5

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

Given no annotations and no output schema, the description is minimally viable: it states the purpose and a key prerequisite. But it omits important behavioral context such as permanence of deletion, error behavior, and what the caller should expect after a successful call.

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 compensate for both parameters. It adds meaning to 'secret' as an auth credential and implies monitor_id identifies the target, but it leaves the relationship between 'owning key' and the secret parameter ambiguous and provides no format details.

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 and resource: 'remove a monitor'. It clearly conveys the action and target, distinguishing it from siblings like heartbeat and fleet_status. It doesn't explicitly name the alternative register_monitor, but the purpose is unambiguous.

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 when to use the tool (when a monitor needs to be removed) and adds a prerequisite by stating it 'needs its secret or the owning key'. However, it does not explicitly say when not to use it or compare it with sibling tools such as register_monitor.

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

fetch_capsuleAInspect

Agent Flight Recorder (Gateway key) — get the last state capsule a monitored agent sent, to resume from where it died.

ParametersJSON Schema
NameRequiredDescriptionDefault
secretNo
monitor_idYes
Behavior3/5

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

There are no annotations, so the description carries the full burden. It signals a read-like operation ('get') and an auth context ('Gateway key'), which gives some transparency. However, it does not disclose what happens when no capsule exists, whether the Gateway key is required/optional, or any error/absence behavior.

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 a single concise sentence that front-loads the purpose and provides a rationale. Every part earns its place, and it is not padded with redundant schema information.

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

Completeness3/5

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

For a simple two-parameter fetch with no output schema and no annotations, the description covers the basic intent and auth context. But it omits return format, missing-capsule behavior, and explicit parameter roles, so it is only minimally adequate for a confident invocation.

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 0%, and the description does not formally define parameters. However, 'Gateway key' hints at the 'secret' parameter and 'monitored agent' hints at 'monitor_id'. This gives the agent partial semantic anchors, but an explicit mapping would be needed to fully compensate for the empty schema descriptions.

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 and resource: 'get the last state capsule' a monitored agent sent, with a clear purpose ('to resume from where it died'). The resource type is specific enough that it is naturally distinguished from sibling tools like delete_monitor, fleet_status, heartbeat, and register_monitor, even though no sibling is named explicitly.

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 when to use it — after an agent dies and you want to resume — but it does not explicitly say when not to use it or mention alternatives. A short 'use heartbeat/fleet_status for liveness instead' would have made the routing unambiguous.

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

fleet_statusAInspect

Agent Flight Recorder (Gateway key) — every monitor you own: alive / late / dead, last heartbeat, capsule preview.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It does describe what data the call returns (status, heartbeat, capsule preview), which is useful, but it does not explicitly state that this is a read-only, non-mutating operation or mention any authentication/scope caveats beyond the cryptic 'Gateway key' phrase.

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?

The description is compact and front-loads the main idea after a jargon-heavy prefix. 'Agent Flight Recorder (Gateway key)' is somewhat cryptic and adds little for an agent, but the rest of the sentence is efficient and information-dense.

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?

For a zero-parameter status endpoint with no output schema, the description covers the essential information an agent needs to call it and interpret the result. It could be more complete by explicitly saying it is a read-only health check, but the simplicity of the tool makes the absence a minor gap.

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

Parameters4/5

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

The tool takes zero parameters and the schema already reflects that, so the baseline for this dimension is 4. The description adds value by explaining what the response includes, which is all the parameter-level context an agent needs for an empty schema.

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 clearly defines the tool's output scope: a fleet-wide status view covering every monitor the caller owns, with alive/late/dead states, last heartbeat, and capsule preview. It lacks an explicit verb like 'list' or 'return', but the resource and scope are unmistakable and it is distinct from sibling tools like heartbeat or fetch_capsule.

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 the tool is the place to go for an overall monitor health check, and the sibling names hint at alternatives. However, it never explicitly says 'use this when you need a fleet overview' or contrasts it with the other tools, so the guidance is only implicit.

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

heartbeatAInspect

Agent Flight Recorder — "still alive" ping for a registered monitor. Include capsule (any JSON ≤32KB: current step, done, next, ids) so a dead-man alert can carry resume state (stored on the key tier). status:"fail" reports a failure immediately.

ParametersJSON Schema
NameRequiredDescriptionDefault
secretNoMonitor secret from register_monitor (not needed when calling with the owning Gateway key)
statusNo
capsuleNoResume state: { step, done: [...], next, ids: {...} } — anything JSON
monitor_idYes
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It adds useful context: status:'fail' reports a failure immediately and the capsule is stored on the key tier for dead-man resume state. However, it does not mention side effects, expected response, or behavior when the monitor is not registered.

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?

Two sentences, with the purpose front-loaded in the first phrase. The second sentence efficiently packs capsule guidance, storage location, and failure semantics without filler.

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

Completeness3/5

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

The description covers purpose, capsule usage, and failure mode, which is a solid basis for a simple ping tool. However, with no output schema and no annotations, it omits the response format and error handling, so an agent may be unsure what to expect after invoking it.

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

Parameters4/5

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

The description adds meaningful semantics beyond the schema: it defines the capsule shape (`{ step, done: [...], next, ids: {...} }`), the 32KB size limit, and clarifies that status:'fail' triggers immediate failure reporting. The monitor_id and secret are left to the schema, but the most nuanced parameters are enhanced.

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 clearly identifies the tool as a 'still alive' ping for a registered monitor, specifying the resource and the immediate-failure behavior of status:'fail'. This distinguishes it from the sibling tools like register_monitor and fetch_capsule by its core function.

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 states the tool is for a registered monitor, implying a prerequisite of register_monitor and framing the use case as periodic liveness pings. It does not explicitly list alternatives or when-not-to-use scenarios, but the context is clear enough.

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

register_monitorAInspect

Agent Flight Recorder — FREE (1 monitor per alert target) / Gateway key (20 monitors + stored capsules + fleet view). Register an agent or scheduled job to be watched: you get a monitor_id + secret; the agent then calls heartbeat every period_minutes. If heartbeats stop for period + grace, the alert target (Discord/HTTPS webhook and/or email) is notified with the last state capsule and a resume link.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesWhat is being watched, e.g. "nightly ETL loop"
alert_emailNoEmail address to alert
alert_webhookNoDiscord webhook URL or any HTTPS webhook (receives JSON)
grace_minutesNoHow late a heartbeat may be before alerting (default 5)
period_minutesNoExpected heartbeat interval in minutes (default 10)
Behavior4/5

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

With no annotations, the description carries the behavioral burden and does a good job disclosing core behavior: it returns a monitor_id + secret, requires periodic heartbeats, and triggers an alert after period + grace with a state capsule and resume link. It does not cover auth or quota edge cases, but the essential side effects are clearly stated.

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?

The description is compact and front-loaded with the plan context, then explains the registration and alert behavior in one efficient block. The pricing/quota phrase adds useful operational context, though it is slightly promotional.

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?

For a tool with no output schema, the description correctly explains what the caller receives (monitor_id + secret) and the subsequent heartbeat/alert contract. It is slightly vague about whether at least one alert target is required, but the core invocation path and follow-up behavior are sufficiently covered.

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 all parameters. The description adds workflow context for period_minutes and grace_minutes and mentions Discord/HTTPS webhook and email targets, but it does not provide meaningful new semantic information beyond the schema.

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 uses a specific verb and resource: 'Register an agent or scheduled job to be watched' and explains the resulting monitor_id + secret workflow. This clearly distinguishes it from siblings like heartbeat, delete_monitor, fetch_capsule, and fleet_status.

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?

The description provides clear context on when the tool is used in the monitoring workflow: first register, then the agent calls heartbeat every period_minutes. It does not explicitly name alternatives or exclusions, but the workflow context is strong enough for an agent to infer when to invoke it.

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

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    B
    maintenance
    Dead-man's-switch monitoring for cron jobs and AI agents: your job or agent pings a URL each run, and Kywio alerts you when the pings stop. MCP-native (create/ping/get heartbeat) plus REST — an outside observer for agents that can't detect their own death.
  • A
    license
    Not graded
    quality
    B
    maintenance
    The watchdog for unattended AI agents: flags MISSED, FAILED, NO_EVIDENCE, RETRY_STORM, BUDGET, DRIFT and STALLED runs of Claude Code routines, OpenClaw, n8n and cron jobs, and alerts via Telegram, Slack or webhook. MIT and self-hostable.
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Local-first working-state checkpoints and portable handoff packets for AI coding agents. Continuation checkpoints recover Claude Code sessions after rate limits, crashes, and compaction; packets hand tasks across tools, repos, and machines — Markdown on disk, no cloud, no telemetry.
    21
    13
    4
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources