list_email_rules
List all email rules with their match conditions, actions, and hit counts
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List all email rules with their match conditions, actions, and hit counts
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that the tool returns all rules with specific fields, implying a read-only operation. For a parameterless list tool, this is adequate, and it adds value beyond the name by detailing the returned data.
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 resource. It provides no unnecessary details and every word earns its place.
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 list tool with no output schema, the description is complete. It states the scope ('all email rules') and the returned fields (match conditions, actions, hit counts), giving an agent sufficient information to invoke the tool correctly.
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?
There are no parameters in the schema, so the description does not need to explain them. The baseline of 4 for zero parameters applies, and the description appropriately focuses on output rather than input.
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 the tool lists all email rules and specifies the included fields (match conditions, actions, hit counts). This distinguishes it from sibling tools like create_email_rule or delete_email_rule, which perform different verbs on the same resource.
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 usage for retrieving email rules but does not explicitly compare it to alternatives or provide exclusion criteria. The context is clear from the verb 'list' and the resource, so usage is implied rather than explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.