freshness_list
List the calling user's freshness webhook subscriptions (the stored secret is never returned).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List the calling user's freshness webhook subscriptions (the stored secret is never returned).
| 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?
With no annotations, the description carries full transparency burden. It discloses that the secret is never returned, which is a key behavioral trait. However, it does not mention pagination or errors, but given no parameters and simple output, it is sufficient.
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?
The description is a single sentence that is front-loaded with the action and includes a critical constraint about the secret. Every word is valuable and there is no unnecessary verbosity.
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?
The tool has no output schema, so the description should help the agent understand the return format. It states it lists subscriptions but does not describe what fields are included (e.g., subscription IDs, topics, etc.). This lack of return structure detail reduces completeness.
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?
The tool has no parameters and 100% schema coverage. The description adds no parameter information beyond the schema, but that is acceptable since none are needed. Baseline for 0 parameters is 4.
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?
The description clearly states it lists the calling user's webhook subscriptions, using a specific verb and resource. It distinguishes from siblings (freshness_subscribe, freshness_unsubscribe) and adds a notable detail about the secret not being returned.
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 description implies when to use (to list subscriptions) but does not explicitly state alternatives or when not to use. For a simple list tool, this is adequate but lacks formal guidance on tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.