Skip to main content
Glama

signal_start

Says the run STARTED. Does not clear the dead-man clock: a routine that starts and hangs still becomes a miss. The next success records the duration. start is not proof of life: it does not move last_event_at and does not clear the miss counter, so a routine that starts and hangs still becomes a miss at the right time. The next success closes the run and records last_duration_ms — pass ?rid= on both ends when runs can overlap, or the duration is measured against the wrong start. With max_duration_sec set on the monitor, a run left open past that ceiling alerts with reason: "too_long" on the next 5-minute check. Works by GET or POST.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesMonitor ID, from `Monitor.ingest_url`.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A3.8/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so thoroughly: it discloses that start does not clear the miss counter, does not move last_event_at, that the next success closes the run and records last_duration_ms, and how max_duration_sec triggers an alert. This is substantial behavioral context beyond the bare schema.

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

Conciseness3/5

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

The description is front-loaded with the core purpose and contains dense, useful information. However, it is redundant: the point that start does not clear the dead-man clock / miss counter and that a hanging run still becomes a miss is made twice, as is the fact that the next success records duration. Shorter would be clearer.

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 subtle monitor semantics and no output schema, the description covers the critical operational details: dead-man clock behavior, overlap-safe rid handling, duration recording, and max_duration_sec alerting. It is nearly complete, though it does not describe the response format or explicitly explain the relationship to sibling signal tools.

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?

The schema already documents the only parameter `id` fully as "Monitor ID, from Monitor.ingest_url," so schema coverage is 100%. The description adds useful context about the `?rid=` query parameter for overlapping runs, but does not add new meaning about the `id` parameter itself. Baseline 3 is appropriate.

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 opens with a specific action, "Says the run STARTED," and clarifies the tool's role by explaining what it does and does not do (does not clear the dead-man clock, does not move last_event_at). It is clear enough to stand apart from signal_exit_code and signal_fail, though it never names or explicitly contrasts those siblings.

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 should be called when a run starts and provides conditional guidance for using `?rid=` when runs can overlap. However, it does not explicitly state when to prefer this tool over signal_exit_code or signal_fail, nor does it provide exclusions or alternative routing.

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