Skip to main content
Glama

Forget a learned instrument

forget_instrument

Delete a saved instrument profile from disk by its identity string, removing stored settings and learned commands so stale device data no longer loads.

Instructions

Delete a saved per-scope profile from disk.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
identityYes*IDN? string or profile_key from list_learned_instruments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It does disclose that removal is persistent ('from disk'), but says nothing about irreversibility, whether the instrument connection is affected, or permission requirements for a delete operation.

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?

A single front-loaded sentence with no waste. It is appropriately sized, though the brevity comes with the specification gaps noted elsewhere.

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?

An output schema exists, so return values need no explanation, and the single parameter is fully documented in the schema. However, for an unannotated destructive operation, missing notes on irreversibility and on the learn/forget lifecycle leave it only minimally complete.

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

Parameters3/5

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

Schema description coverage is 100% and the schema already explains the identity param ('*IDN? string or profile_key from list_learned_instruments'). The description adds only the 'per-scope' framing, which is marginal; baseline 3 applies.

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?

States a specific verb ('Delete') and resource ('saved per-scope profile'), which maps cleanly onto 'forget' and separates it from open/close/list siblings. It stops short of naming a sibling it is not, so it is clear but not fully differentiated.

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?

There is no guidance on when to use this versus close_instrument, list_learned_instruments, or learn_instrument, and no stated prerequisites. The agent must infer that this is the inverse of learn_instrument.

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