list_subscriptions
List your subscriptions without signing secrets.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List your subscriptions without signing secrets.
| 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 provided, the description carries the full burden, and it does disclose one non-obvious behavioral trait: signing secrets are deliberately excluded from the result. It is silent on auth requirements, pagination, and ordering, and 'without signing secrets' is grammatically ambiguous between response redaction and an auth requirement.
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 short sentence with the operation front-loaded and no filler. Nothing could be trimmed without losing content.
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?
For a parameterless, annotation-free read tool with no output schema, the description should at least sketch the returned shape and auth expectations. It hints at result content by ruling out secrets but leaves the subscription payload and any access requirements unstated.
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 schema declares zero parameters, so there is nothing for the description to disambiguate. The baseline for a parameterless tool applies, and the description correctly avoids inventing filter arguments.
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 and resource ('List your subscriptions'), which cleanly pairs with the read-side versus the sibling create_subscription and delete_subscription. However, it never names those siblings or narrows the scope (all subscriptions? mine only?), so differentiation is implied rather than explicit.
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 mention of alternatives such as create_subscription/delete_subscription, and no preconditions. The agent must infer from the name alone that this is the enumeration counterpart to the mutation tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.