remove_network
Delete a network from a 1Panel server by ID when cleaning up unused or misconfigured network resources.
Instructions
Remove network
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Delete a network from a 1Panel server by ID when cleaning up unused or misconfigured network resources.
Remove network
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure for a destructive operation. It says nothing about irreversibility, whether the network must be empty or containers detached first, or what happens on failure — all of which an agent needs before invoking a delete.
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?
Two words are technically concise but reflect under-specification rather than economy; there is no front-loaded context, scope, or warning. It earns no space beyond restating the tool name.
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 destructive, single-parameter tool with no annotations and no output schema, the description is wholly inadequate — it omits safety implications, preconditions, and parameter meaning. Nothing an agent needs to call this correctly is present.
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?
There is one required parameter ('id') with 0% schema description coverage, and the description adds no meaning to it — not the identifier format, not whether it is a name or an opaque ID. It fails to compensate for the documentation gap.
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 names a specific verb and resource ('Remove network'), so the basic action is identifiable. However, it offers no scope details that would distinguish it from sibling network tools (list_networks, create_network) or from the many other remove_* tools in this family, and it does not say what a 'network' refers to here.
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?
There is no when-to-use guidance, no prerequisites, and no reference to alternatives. The agent is left to infer that this deletes an existing network rather than disconnecting or modifying it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.