list_monitors
List all monitors with real-time computed status. Requires API key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | API key (x-api-key header value) |
List all monitors with real-time computed status. Requires API key.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | API key (x-api-key header value) |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses the real-time computed nature and the API key requirement, but does not mention side effects, return format, or rate limits. For a list operation, the lack of destructive concern is implicit but not stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single clear sentence that leads with the core action and includes only necessary information, making it highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with one parameter and no output schema, and the description adequately conveys the main function and return concept (all monitors with their status). It does not over-explain, and the lack of pagination details is acceptable for this scope.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes api_key at 100% coverage. The description's mention of 'Requires API key' aligns with the schema's required field but adds no additional semantic detail beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists all monitors and includes real-time computed status, using a specific verb and resource. This distinguishes it from sibling tools like get_monitor_status, which likely handles a single monitor.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides context (lists all monitors) but does not explicitly state when to use this tool versus get_monitor_status or other siblings. It mentions the API key requirement but no exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools target distinct resources/actions, but get_dashboard and list_monitors both provide overviews. Descriptions clarify their roles, so confusion is limited.
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.
With 6 tools, the set is well-scoped for a cron monitoring service, covering creation, status checking, history, and pinging without unnecessary bloat.
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.