Skip to main content
Glama
WLAN-Pi
by WLAN-Pi

deactivate_network_config

Deactivate an active network configuration profile by ID, with an option to force override if it remains flagged as active.

Instructions

Deactivate a currently active network configuration profile.

Args: id: Configuration profile ID to deactivate override_active: If True, force deactivation even if flagged as active

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
override_activeNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

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?

With no annotations provided, the description must carry the behavioral disclosure burden. It does reveal that deactivation can be forced via override_active and that there is an 'active' flag that may otherwise block the operation. However, it does not state side effects (e.g., network disruption), prerequisites, or error conditions, leaving important behavioral aspects undisclosed.

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 concise and front-loaded: one clear action sentence followed by a compact Args block. Every sentence adds value, with no redundant or filler content.

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

Completeness3/5

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

For a simple two-parameter mutation with an existing output schema, the description covers the core purpose and parameters. However, it lacks context about consequences of deactivation (e.g., connectivity impact), prerequisites, and how this ties into the broader config lifecycle, leaving an agent to guess at operational impact.

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

Parameters4/5

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

Schema description coverage is 0%, so the description's Args block is the sole documentation for parameters. It clearly defines id as the configuration profile ID to deactivate and explains the override_active behavior. This provides actionable meaning beyond the bare schema titles, though it could mention how to obtain the ID.

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 action ('Deactivate') and a specific resource ('currently active network configuration profile'), clearly distinguishing it from sibling tools like activate_network_config, create_network_config, or delete_network_config. The purpose is unambiguous and immediately actionable.

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

Usage Guidelines3/5

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

The phrase 'currently active' and the override_active parameter imply when this tool should be used (on active profiles requiring deactivation), but there is no explicit guidance on when not to use it or how it relates to alternatives such as delete_network_config. The context is clear enough to infer the intended use, but exclusions are missing.

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