Skip to main content
Glama

remove_dns_static

DestructiveIdempotent

Delete a static DNS entry by its ID to remove a manual DNS record from the router.

Instructions

Delete a static DNS entry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entry_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior3/5

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

The description's 'Delete' matches the annotation destructiveHint=true, so there is no contradiction. However, it adds little beyond the annotations: the destructive and idempotent hints are already provided in structured data, and the description does not disclose additional behavioral context such as permanence, cascading effects, or how deletion of an arbitrary static DNS entry is handled.

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 a single concise sentence that states the operation immediately. It contains no filler, preamble, or redundant detail and earns its place in the definition.

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?

Given the low complexity of a single-parameter destructive tool, an output schema, and the annotations covering destructive/idempotent behavior, this description is mostly complete. The only notable gap is not pointing the agent to list_dns_static for finding a valid entry ID, but that is a minor convenience rather than a blocking omission.

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

Parameters2/5

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

The schema has 0% description coverage for the parameter, but the description does not compensate by explaining what entry_id refers to or how it should be obtained. The parameter name itself suggests identity, but the description goes no further than repetition of the resource noun.

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 uses a specific verb, 'Delete', and a specific resource, 'a static DNS entry,' so the tool's exact purpose is immediately clear. It is easily differentiated from sibling tools like add_dns_static, list_dns_static, remove_nat_rule, and remove_firewall_rule without needing to inspect their schemas.

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 states the core use case: deleting a static DNS entry. While it does not mention the natural companion tool list_dns_static for finding an entry_id, the resource domain is specific enough that an agent will know when this tool is intended and when it is not.

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