beep_audio
Plays a notification beep sound to alert the user or signal that a remote task has finished.
Instructions
Play a simple notification beep sound.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Plays a notification beep sound to alert the user or signal that a remote task has finished.
Play a simple notification beep sound.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds the context that this is a 'simple notification beep' rather than media playback, which is useful beyond the raw annotations. However, it does not disclose details like volume dependence, return behavior, or what happens if no audio device is available. Annotations already indicate side effects (readOnlyHint=false), so the bar is lower.
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?
The description is a single, front-loaded sentence with no filler. Every word contributes to understanding the tool's purpose.
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 zero-parameter utility that plays a beep, the description is essentially complete. It does not describe the return value or failure modes, but given the trivial nature of the tool and the annotations covering side-effect behavior, no critical information is missing.
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?
With zero parameters and a fully covered empty schema, the description does not need to explain parameter meanings. The baseline for no parameters is 4, and the description adds no unnecessary param details.
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 clearly states the action ('play') and resource ('a simple notification beep sound'), which is specific enough to distinguish it from audio-related siblings like set_volume, mute_audio, and search_and_play. It conveys exactly what the tool does without ambiguity.
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?
No guidance is provided about when to use this tool versus alternatives such as send_notification or audio playback tools. The description implies basic usage but does not state any context, prerequisites, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.