Skip to main content
Glama
ver-1000000

discord-rpc-mcp

by ver-1000000

get_voice_settings

Read-onlyIdempotent

Retrieve local Discord voice settings to check audio devices, input/output levels, and configuration.

Instructions

Get local voice settings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds a 'local' qualifier that hints at scope, but does not disclose return format, potential edge cases, or any other behavioral details beyond what annotations provide.

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 entire description is a single, front-loaded sentence with no filler. Every word ('Get', 'local', 'voice settings') contributes meaning, and there is no redundant information or unnecessary elaboration.

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?

Given the tool's simplicity (0 parameters, no output schema, annotations covering safety), the description is minimally adequate but leaves ambiguity around what 'voice settings' actually includes and what the returned data looks like. More specific return details would improve completeness without bloating the description.

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?

The tool has zero parameters and the schema coverage is trivially 100%. Per the baseline for parameterless tools, the description is not required to explain parameters, and it correctly adds nothing irrelevant. No parameter-related gaps exist.

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 specific verb ('Get') and resource ('local voice settings'), which clearly differentiates it from siblings like get_selected_voice_channel that deal with channels rather than settings. The term 'local' adds a scoping detail, though it could be more explicit about what constitutes voice settings.

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 versus alternatives. Sibling tools such as get_selected_voice_channel or get_events are not mentioned, and no context is provided about typical use cases or prerequisites.

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