evidence_webhook_health
Read bounded health for one owner-scoped webhook subscription.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| subscriptionKey | Yes |
Read bounded health for one owner-scoped webhook subscription.
| Name | Required | Description | Default |
|---|---|---|---|
| subscriptionKey | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false and openWorldHint=false, so the safety profile is fully covered elsewhere. The description's only added behavioral content is the implicit owner-scoping and the vague "bounded" qualifier; it says nothing about what the health measurement covers or how it is capped.
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?
A single front-loaded sentence with no filler. It is efficient, though it is terse to the point where important qualifiers ("bounded") go undefined.
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?
With no output schema and an undocumented parameter, the description needed to say what "health" returns (delivery failures, retry state, uptime window) and how it differs from availability/history. It does none of that, so an agent cannot predict the response or validate its choice of tool.
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?
Schema description coverage is 0%, so the description must carry the param. It does convey that subscriptionKey identifies a single subscription and that resolution is limited to the caller's owner scope, which is real added meaning, but it gives no format, derivation, or example for the key.
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?
It pairs a clear verb ("Read") with a specific resource ("health for one owner-scoped webhook subscription"), so the basic action is recoverable. But "bounded health" is unexplained jargon and the description never distinguishes this from nearby siblings such as evidence_webhook_availability or evidence_webhook_history, leaving the agent unsure which health view it gets.
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?
There is no when-to-use guidance, no prerequisites, and no mention of alternatives. With three other webhook-read siblings in the toolset, the absence of any routing hint means the agent must guess between them.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.