Skip to main content
Glama

remove_dhcp_network

DestructiveIdempotent

Delete a DHCP network configuration from MikroTik RouterOS to free up address ranges and remove unused settings.

Instructions

Removes a DHCP network configuration from the MikroTik device.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deviceNo
networkYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.19.4

TDQS

C2.8/5.0
Behavior2/5

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

The annotations already declare destructiveHint=true and idempotentHint=true, so the agent knows this is a destructive, repeatable operation. The description adds no behavioral context beyond restating the action, such as effects on DHCP leases or whether the operation is reversible.

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

Conciseness4/5

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

The description is a single, front-loaded sentence with no wasted words. It is concise, though brevity comes at the expense of parameter and usage detail.

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

Completeness2/5

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

For a destructive tool with two parameters and zero schema descriptions, the description is incomplete: it omits what 'network' identifies and gives no selection or prerequisite guidance. The output schema exists, so return values need not be explained, but input semantics are essential for correct invocation and are missing.

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

Parameters1/5

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

Schema description coverage is 0% and the description does not explain the meaning or format of the required 'network' parameter or the optional 'device' parameter. An agent cannot determine what value to supply for 'network' (e.g., subnet string, network ID) from the description.

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 ('Removes') and resource ('DHCP network configuration') on the MikroTik device. It clearly differentiates from sibling tools like remove_dhcp_server (which removes a server, not a network config) and create/update_dhcp_network (which create or modify instead of remove).

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

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus alternatives like update_dhcp_network or remove_dhcp_server. There is no mention of prerequisites, conditions, or exclusions; usage is only implied by the verb 'Removes'.

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

Deploy Server

Other Tools