evidence_webhook_availability
Read whether webhook creation is currently operator-enabled.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Read whether webhook creation is currently operator-enabled.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the safety profile is fully covered. The description adds that the state is operator-controlled (not user-settable), which is useful context, but says nothing about caching, latency, or what a 'disabled' result should trigger.
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 sentence with no filler, and the resource and condition are front-loaded so an agent can decide instantly.
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?
No output schema exists, so the description carries the burden of describing the return value; it implies a boolean availability flag but never states the response shape or how to interpret it. For a trivial no-arg read with full annotation coverage this is adequate, but not complete.
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?
Zero parameters and 100% schema coverage, so the baseline of 4 applies. There is nothing further the description could add about inputs.
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?
States a specific verb ('Read') and a precise resource ('whether webhook creation is currently operator-enabled'), which clearly separates it from siblings like evidence_create_webhook, evidence_set_webhook_status, and evidence_webhook_health. It does not name an alternative explicitly, so it falls just short of 5.
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 wording implies this is a precondition check (verify availability before attempting creation), but it never states when to call it or what to do if the flag is false. No alternatives or exclusions are named, so 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.