Skip to main content
Glama
mikesplore
by mikesplore

unpair_bluetooth_device

Remove a paired Bluetooth device by providing its address, freeing connections and resolving connectivity issues.

Instructions

Unpair a Bluetooth device.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior2/5

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

Annotations already signal that this is not read-only, not idempotent, and not flagged destructive. The description adds no behavioral context beyond the action itself, such as whether unpairing disconnects an active connection, requires Bluetooth to be enabled, or 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.

Conciseness5/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 the brevity comes at the cost of omitted details penalized in other dimensions.

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?

Despite low complexity, the tool definition is incomplete: no parameter format, no usage context, no behavioral side effects, and no output information. The agent is left to infer prerequisites and outcomes rather than being equipped to invoke the tool correctly.

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, and the description does not explain the address parameter's expected format or meaning. 'address' is minimally suggestive, but the agent is not told whether it expects a MAC address, device name, or another identifier.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource: "Unpair a Bluetooth device." This is unambiguous and conceptually distinct from siblings like pair_bluetooth_device, though it basically restates the tool name and does not explicitly mention the inverse relationship.

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, how to obtain the address (e.g., via list_bluetooth_devices), or that pair_bluetooth_device is the opposite operation. The agent must infer the correct context from the name alone.

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