Skip to main content
Glama

Transcribe Audio Pro

transcribe_audio_pro
Read-onlyIdempotent

Transcribe audio with Brainiall Speech Pro — multilingual transcription.

Supports 99 languages with automatic language detection, word-level timestamps, per-word confidence scores, and optional speaker diarization (identifies who spoke each word). Best-in-class WER (~2%).

Args: audio_base64: Base64-encoded audio (WAV, MP3, OGG, FLAC, WebM). language: Language code. Auto-detected if omitted. Supports 99 languages. diarize: Enable speaker diarization (default: false). When true, each word includes a speaker label (e.g. SPEAKER_00, SPEAKER_01).

Returns: dict with keys: - text (str): Full decoded transcript - words (list): Per-word results with timestamps, each containing: - word (str), start (float), end (float), confidence (float 0-1) - speaker (str|null): Speaker label when diarize=true - speakers (dict|null): Speaker info with count and labels - audioDurationMs (int): Audio duration in milliseconds - metadata (dict): Processing time, language, languageProbability - audioQuality (dict): Audio metrics (SNR, peak/RMS dB, etc.)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
diarizeNoEnable speaker diarization to identify who spoke each word.
languageNoLanguage code (e.g. 'en', 'es', 'zh'). Auto-detected when omitted.
audio_base64YesBase64-encoded audio data. Supports WAV, MP3, OGG, FLAC, and WebM formats.

TDQS

A4.1/5.0
Behavior4/5

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

Annotations include readOnlyHint: true, idempotentHint: true, and destructiveHint: false, which cover the non-mutating nature. The description adds beyond this by documenting output structure, language auto-detection, diarization behavior, and metadata/quality metrics, enriching the agent's understanding without contradicting the annotations.

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?

The description is organized with clear Args and Returns sections, front-loading the core purpose. It is somewhat verbose but every detail, including the return structure, earns its place given the absence of an output schema. The structure aids readability without redundancy.

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

Completeness5/5

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

Given the tool's complexity (multiple formats, language support, diarization, rich output), the description is comprehensive. It covers parameter formats, defaults, return types, and behavioral nuances, fully compensating for the lack of an output schema and leaving no obvious gap for correct invocation.

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

Parameters5/5

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

While the input schema covers all three parameters with descriptions, the tool description goes further by explaining auto-detection of language, the effect of diarize on speaker labels, supported audio formats, and the detailed return dictionary. This adds significant semantic value beyond the schema, especially since there is no output schema.

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?

The description begins with 'Transcribe audio with Brainiall Speech Pro' and immediately distinguishes itself from the basic sibling 'transcribe_audio' by detailing advanced features such as multilingual support, diarization, and confidence scores. This gives a specific verb, resource, and capability set that unambiguously identifies the tool's purpose.

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?

The description provides no explicit guidance on when to use this tool versus the basic 'transcribe_audio' sibling. It does not state conditions, exclusions, or recommendation criteria, leaving the agent to infer that the 'Pro' variant is for advanced needs without clear direction.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation4/5

Most tools map to clearly distinct actions, but transcribe_audio and transcribe_audio_pro are near-duplicates and the four check_*_service tools require careful reading. The detailed descriptions make the distinctions recoverable, so confusion should be rare.

Naming Consistency4/5

The set overwhelmingly follows a snake_case verb_* pattern, and the voice_id_* family is internally consistent. Minor deviations like get_phoneme_inventory vs list_tts_voices and the _pro suffix on transcribe_audio_pro keep it from being perfect.

Tool Count4/5

Fourteen tools is within a reasonable range, but the server bundles pronunciation, STT, TTS, voice ID, and four health checks, making it feel broader than the 'Pronunciation' name suggests. A few health checks could be consolidated, but nothing is excessive.

Completeness3/5

Core pronunciation, transcription, and synthesis workflows are present, but the voice ID portion has create/list/verify/identify with no way to delete or unenroll a speaker. That is a notable lifecycle gap in an otherwise fairly complete speech toolkit.

Resources