Skip to main content
Glama

ping_monitor

Send a heartbeat ping to a cron monitor to confirm the job ran successfully. Use ping_type='ping' for simple heartbeats, 'start'+'complete' for duration tracking, or 'fail' to immediately mark it down.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ping_typeNoType of ping eventping
monitor_idYesMonitor ID to ping

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It adds value by explaining the consequences of using 'fail' (immediately mark it down) and the structured start/complete flow for duration tracking. It does not mention idempotency or side effects, but the tool is simple and the description covers the key behavioral differences among ping types.

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 two sentences long, front-loaded with the core purpose, and every word adds value. It avoids redundancy with the schema while efficiently conveying usage scenarios.

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 simple 2-parameter tool with no output schema, the description is sufficiently complete: it explains the primary use case, parameter semantics, and special behavior (fail). It does not describe the response format or error handling, but these are not critical for a simple ping tool and are not covered by any structured fields.

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 input schema already covers both parameters with clear descriptions and an enum for ping_type (schema coverage 100%). The description enhances the schema by explaining the semantic meaning of each ping_type value (simple heartbeat, duration tracking, failure signal), which goes beyond the enum labels and makes the tool more usable.

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 states the tool's function: 'Send a heartbeat ping to a cron monitor to confirm the job ran successfully.' It identifies the specific resource (cron monitor) and action (send heartbeat ping), and the sibling tools (create_monitor, get_monitor_status, etc.) show this is distinct for pinging.

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 explicit guidance on when to use different ping_type values: 'Use ping_type="ping" for simple heartbeats, "start"+"complete" for duration tracking, or "fail" to immediately mark it down.' It does not explicitly contrast with sibling tools, but the resource and action are clear enough that such contrast is unnecessary for basic selection.

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
Disambiguation4/5

Most tools target distinct resources/actions, but get_dashboard and list_monitors both provide overviews. Descriptions clarify their roles, so confusion is limited.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with lowercase and underscores (create_monitor, get_dashboard, get_monitor_status, get_ping_history, list_monitors, ping_monitor). No deviations.

Tool Count5/5

With 6 tools, the set is well-scoped for a cron monitoring service, covering creation, status checking, history, and pinging without unnecessary bloat.

Completeness3/5

The core workflow (create, monitor, ping) is present, but there is no update or delete monitor operation, which is a significant gap for managing monitors over time.