Skip to main content
Glama
headleymonitor-ux

durable-web-monitor-mcp

monitor_status

Retrieve the current durable inbox state and storage location so agents can check notification status and where monitoring data is kept.

Instructions

Return bounded durable inbox state and storage location.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, no output schema, and no parameter schema, the description carries the full behavioral burden. "Bounded" hints at a size cap and "durable" hints at persistence, but neither is explained — no indication of what is returned, whether the call is read-only, or what 'storage location' means.

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

Conciseness4/5

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

A single compact sentence that is front-loaded with the object of the operation. It is efficient, though the terseness veers toward under-specification rather than tight writing.

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?

With no output schema and no annotations, the description should describe the returned state more concretely, and it only gestures at it via "bounded durable inbox state and storage location". For a simple zero-parameter read this is minimally adequate but leaves the agent unsure of what it will receive.

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 tool takes zero parameters, so there is nothing for the description to disambiguate. Baseline 4 applies; no parameter-level gaps exist.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a verb ("Return") and resources ("inbox state", "storage location"), so the basic purpose is inferable. However, "bounded durable inbox state" is opaque jargon, and nothing distinguishes this from sibling list_notifications or explains what an 'inbox' means in this server's context.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no when-to-use guidance, no prerequisites, and no mention of alternatives such as list_notifications or check_url. The agent must guess whether this is a diagnostic read, a polling endpoint, or a complement to the notification tools.

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