Skip to main content
Glama
mikesplore
by mikesplore

check_alert_status

Read-onlyIdempotent

Check whether spike alerts and daily summaries are scheduled, view alerts triggered today, and confirm the recipient email configured in .env.

Instructions

Check the monitoring system status: whether spike alerts and daily summaries are scheduled, alerts today, and recipient email from .env. No email input needed — reads RECIPIENT_EMAIL from .env.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

Even though annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, the description adds valuable behavioral context: it reads configuration from .env and requires no caller-supplied email. This external dependency and the absence of parameters go beyond what annotations alone convey.

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 tightly written sentences deliver all essential information: what is checked, the source of the email, and the absence of required input. There is no filler, and the most actionable detail (no email input needed) is front-loaded.

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

Completeness5/5

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

For a zero-parameter, read-only status tool with no output schema, the description is complete. It enumerates the status components returned and removes ambiguity about input and configuration source, so an agent can call it correctly without further investigation.

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

Parameters5/5

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

With zero parameters, the baseline is already 4, and the description exceeds it by explicitly addressing why no email parameter exists and where the recipient email comes from (RECIPIENT_EMAIL in .env). This prevents an agent from inventing or expecting an email parameter.

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 names a specific verb ('Check'), a clear resource ('the monitoring system status'), and the concrete facts it returns: spike alert and daily summary scheduling, today's alerts, and the configured recipient email. This is more specific than any sibling tool and establishes a distinct identity.

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 clearly states that no email input is needed because RECIPIENT_EMAIL is read from .env, which is useful usage context. However, it does not explicitly say when to prefer this tool over related tools like send_test_spike_alert, send_daily_summary_now, or check_vnstat_status; usage guidance is only implied.

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

Deploy Server

Other Tools