Skip to main content
Glama

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

delete_monitor

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
secretNo
monitor_idYes

Schema Changelog

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

  1. First observed

TDQS

B3.3/5.0
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.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
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.

Resources