add_to_denylist
Add a package to a firewall's denylist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| registry | Yes | Package registry | |
| firewall_id | Yes | Firewall public ID | |
| package_name | Yes | Package name to add |
Add a package to a firewall's denylist.
| Name | Required | Description | Default |
|---|---|---|---|
| registry | Yes | Package registry | |
| firewall_id | Yes | Firewall public ID | |
| package_name | Yes | Package name to add |
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 of behavioral disclosure but fails to mention critical mutation behaviors: idempotency (what happens if the package is already denied), whether this automatically removes the package from the allowlist, side effects (immediate blocking), or required permissions.
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, efficient sentence with no wasted words. It front-loads the action and target, making it immediately scannable.
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 security-sensitive mutation tool with no output schema and zero annotations, the description is incomplete. It omits behavioral consequences, success indicators, error conditions, and mutual exclusivity relationships with the allowlist system that would be necessary for safe invocation.
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?
With 100% schema description coverage, the structured fields already explain 'firewall_id', 'package_name', and 'registry'. The description implies the package_name is what gets added but does not add syntax details, format constraints, or examples beyond what the schema already provides.
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 uses a specific verb ('Add') and clearly identifies the resource ('package') and target ('firewall's denylist'). It implicitly distinguishes from sibling tools like 'add_to_allowlist' and 'remove_from_denylist' through precise terminology, though it does not explicitly name sibling alternatives.
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 provides no guidance on when to use this tool versus alternatives (e.g., when to denylist vs. allowlist), nor does it mention prerequisites or conditions that would suggest when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.