Skip to main content
Glama

Create Muting Rule

create_muting_rule

Create a rule to auto-mute findings matching a pattern. Existing open findings matching the rule are muted immediately. Supports muting by fingerprint pattern, test definition, or test+target combination.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
scopeYesFINGERPRINT: match by finding fingerprint substring. TEST_DEFINITION: mute all findings from a test. TEST_TARGET: mute findings from a specific test on a specific target.
reasonNoReason for muting
targetIdNoTarget ID to scope the rule to (required for TEST_TARGET, optional for others)
expiresAtNoOptional expiry as ISO 8601 string. Rule auto-expires after this time.
testDefinitionIdNoTest definition ID (required for TEST_DEFINITION and TEST_TARGET scopes)
fingerprintPatternNoSubstring to match in finding fingerprints (required for FINGERPRINT scope)

TDQS

A4.2/5.0
Behavior4/5

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

Since no annotations are provided, the description carries the transparency burden. It usefully discloses that existing open findings matching the rule are muted immediately and that the rule auto-mutes future matching findings. It does not discuss permissions or response details, but the key side effect is clearly communicated.

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?

The description is three concise sentences: purpose first, then immediate-muting behavior, then supported scope types. Every sentence adds unique, relevant information with no filler or redundancy.

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?

The description adequately covers the core action, key side effects, and the three modes, complemented by a rich schema. However, since there is no output schema, it could mention what the API returns (e.g., the created rule ID). This is a minor gap, but overall the context is strong.

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?

The schema already documents every parameter thoroughly (100% coverage), including conditional requirements. The description adds a high-level mapping of the three scope modes but does not provide additional per-parameter meaning beyond what the schema already states, so it earns the baseline score.

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 opens with 'Create a rule to auto-mute findings matching a pattern,' which names the specific verb, resource, and purpose. It differentiates from one-off muting tools by emphasizing this is a persistent rule and lists three distinct scope modes, making it clear what the 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 Guidelines4/5

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

The description conveys that this tool is for pattern-based, persistent muting and notes the immediate effect on existing findings, which implies appropriate use cases. However, it does not explicitly mention alternatives like mute_finding or state when not to use the tool, so it stops short of full exclusion guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.5/5.0
Disambiguation4/5

Most tools are clearly separated by resource (targets, runs, findings, incidents, etc.) and action. A few close pairs like active_runs/list_runs and mute_finding/create_muting_rule could confuse, but descriptions clarify the distinctions.

Naming Consistency4/5

The majority of tools follow verb_noun naming (create_target, get_target, delete_journey). A few outliers use noun phrases (active_runs, daily_trends, system_health, team_stats) which slightly breaks the pattern, but overall the convention is predictable.

Tool Count1/5

74 tools is extreme for any MCP server. Even for a comprehensive monitoring platform, this overwhelms agents with too many granular operations (e.g., enable_all_tests vs disable_all_tests vs update_test, or import_targets duplicating create_target). A more consolidated set would be appropriate.

Completeness5/5

The tool surface is remarkably complete for the monitoring domain: full CRUD for targets, journeys, rules, reports, secrets, and fragments; plus run triggering, incident management, findings handling, SEO tracking, guest scans, and admin tools. Only maintenance windows lack an update operation, which is minor.

Resources