Skip to main content
Glama

获取语音信息

get_record
Read-only

Fetch voice file details using a voice file ID, with optional conversion to formats like mp3 or silk.

Instructions

根据语音 file 标识获取语音文件信息,可转换格式。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fileYes语音 file 值
out_formatNo输出格式,如 mp3/silk

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already establish readOnlyHint=true and destructiveHint=false, so no mutation safety disclosure is needed. The description adds the behavioral detail that the returned voice file information can be converted to a different format (e.g., via out_format), which is genuinely useful beyond the schema. No contradiction with annotations was found.

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 one efficient sentence that front-loads the main action and appends the conversion capability. No filler words or redundant restatements of the title/name are present.

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

Completeness4/5

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

For a low-complexity read tool with only two parameters, full schema coverage, and read-only annotations, the description supplies the core purpose and the conversion behavior. It does not spell out alternatives or return details, but the output schema is absent and the operation is simple enough that the current information is largely sufficient.

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 documentation covers 100% of the parameters, so the baseline is 3. The description adds a small layer by explaining that the file parameter is a voice-file identifier and that output format conversion is possible, but it does not substantially extend the schema's own descriptions of file and out_format.

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?

Description uses a specific verb (获取) and resource (语音文件信息), and clarifies the operation is keyed by a voice file identifier, with optional format conversion. This clearly differentiates it from generic file/image retrieval siblings such as get_file or get_image. The generic English name is compensated by the precise Chinese title and description.

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 choose this over sibling tools like get_file or get_image, nor any exclusions or prerequisites. The use case is only implied by the resource type (voice file), so an agent must infer context. Thus it lacks explicit routing to alternatives.

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