Skip to main content
Glama

create_monitor

Register a new cron job monitor. Returns the monitor ID to use in ping URLs. Requires API key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesHuman-readable monitor name
api_keyYesAPI key (x-api-key header value)
notify_urlNoWebhook URL for DOWN alerts (receives POST with JSON)
grace_period_secondsNoExtra seconds allowed after interval before going DOWN
schedule_descriptionNoHuman-readable schedule (e.g. 'Every night at 3am UTC')
expected_interval_secondsYesHow often the job should run (seconds)

TDQS

A3.9/5.0
Behavior3/5

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

Without annotations, the description discloses two behavioral details: it requires an API key and returns a monitor ID for ping URLs. However, it doesn't disclose idempotency, side effects, or error behavior, which are expected for a create tool.

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 sentences, front-loaded with the primary action, no redundant language.

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?

The description covers the essential creation purpose and return value, but with no output schema, it leaves out error handling and post-creation workflow details. It's adequate for a simple CRUD-style tool but not fully complete.

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?

Schema covers 100% of parameters with descriptions, so baseline is 3. The description adds no parameter-specific meaning beyond the schema; it only restates the API key requirement.

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?

Clearly states the action (register) and object (cron job monitor), distinguishes from sibling read/ping tools by its creation semantics, and mentions the key output (monitor ID).

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?

Provides clear context for when to use (registering a new monitor), and the API key requirement is a usage prerequisite. Doesn't explicitly name alternatives, but the creation role among siblings is unambiguous.

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.