Skip to main content
Glama

Ignore suggestion

suggest_ignore
Idempotent

Dismiss an unwanted suggestion to teach the system to reduce similar ones; repeated ignores automatically silence that type.

Instructions

Ignore a suggestion (counts toward frequency learning: similar suggestions converge in weight; repeated ignores auto-silence that type).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesSuggestion ID (from suggest_now / suggest_list)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.10.0

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations only declare idempotentHint, so the description carries the burden of revealing additional behavior. It explains that ignoring counts toward frequency learning and that repeated ignores auto-silence that type, which is valuable context beyond idempotency. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence with the core action first and behavioral details in parentheses. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With one parameter, an output schema, and idempotency annotation, the description covers the tool's effect and learning behavior. It does not mention potential error cases or preconditions, but these are minor for a simple ignore action.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the parameter description already clarifies the source of the ID. The tool description does not add further meaning to the parameter, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Ignore') and resource ('suggestion'), and the parenthetical adds behavior that distinguishes it from siblings like suggest_accept and suggest_now. An agent can clearly identify what this tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use it (when you want to ignore a suggestion) but does not explicitly contrast it with suggest_accept or state conditions for choosing it over alternatives. There is no when-not guidance, leaving some room for inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.