Skip to main content
Glama

Analyze speech (transcript + tone)

oruk_analyze_speech
Read-only

Transcribe English audio AND score how it was said in one call: transcript, tagged transcript, calibrated emotion (15 labels) and speaking-style (16 labels) scores, and time-local segments. Use this when the user cares about both the words and the delivery — meetings, support calls, interviews, voice notes. Accepts a public audio URL or base64 bytes (wav/flac/mp3/m4a/ogg/webm, ≤30 MB / ≤60 min). Returns compact summaries by default. For words only use oruk_transcribe_audio; for tone only use oruk_analyze_tone.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelNooruk-resonance (default for transcription/analysis, highest accuracy) or oruk-spectra-1 (default for tone, most efficient).
detailNocompact (default) returns top label scores and condensed segments; full adds every label score and word-level timings.
api_keyNoOnly for temporary keys from oruk_create_trial_key. Permanent keys belong in your MCP client config as an "Authorization: Bearer <key>" header, never in tool arguments.
filenameNoOriginal filename including extension (e.g. call.wav). Helps decoding when audio_base64 is used.
audio_urlNoPublicly fetchable audio file URL (wav, flac, mp3, m4a, ogg, webm; up to 30 MB / 60 minutes of English speech).
audio_base64NoBase64-encoded audio bytes for local files (up to 8 MB decoded). Prefer audio_url for anything larger.

TDQS

A4.5/5.0
Behavior4/5

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

The annotations already mark this as a read-only, non-destructive operation, and the description adds meaningful behavioral context: accepted formats, base64 input limit, decoded size caps, default compact return, and the combined transcript-plus-analysis behavior. It demonstrates what the tool actually does beyond the declarative annotations, though it does not disclose possible errors or rate limits.

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?

Four tight, focused sentences cover the tool's purpose, output, usage context, and applicable exceptions. The content is front-loaded, with no repetitive phrases or unnecessary verbiage; every sentence directly contributes to selecting and invoking the tool.

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?

Even without an output schema, the description names the return categories and explains the compact by default behavior, which gives the agent the necessary expectation of what comes back. Input constraints, supported formats, size and duration limits, and alternate routes for narrow requests are all present. For a read-only audio analysis tool, this is complete enough to call correctly on the first attempt.

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%, so the parameters are fully explained in the input schema itself. The description reiterates the audio URL/base64 and file-format constraints but does not add new semantic meaning beyond the schema. A 3 is the appropriate baseline when the schema already does the heavy lifting.

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 names a specific verb and resource ('Transcribe English audio AND score how it was said') and enumerates concrete outputs: transcript, tagged transcript, emotion and style label scores, and time-local segments. It also explicitly distinguishes the tool from its siblings by inviting the user to choose alternatives when only words or only tone matter, so there is no ambiguity about scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives an explicit when-to-use signal ('Use when the user cares about both the words and the delivery') and tangible examples (meetings, support calls, interviews, voice notes). It also names the exact alternatives for the narrow cases: oruk_transcribe_audio for words only and oruk_analyze_tone for tone only.

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

A4.5/5.0
Disambiguation5/5

Each audio tool has a clearly distinct mode—words only, tone only, or both—and the descriptions explicitly cross-reference which tool to use for each need. The support tools (credits, trial keys, model listing, onboarding) are also cleanly separated and unlikely to be confused.

Naming Consistency4/5

Tools consistently use an oruk_<verb>_<object> pattern, such as oruk_transcribe_audio, oruk_list_models, and oruk_check_credits. oruk_get_started is the one mild deviation, using an idiomatic verb phrase rather than a clear object, but it remains recognizable and does not harm usability.

Tool Count5/5

Seven tools is well-scoped for this server: three core speech capabilities, plus four practical setup/billing/configuration utilities. Every tool serves a distinct and justified purpose with no missing or redundant surface.

Completeness5/5

The core speech workflow is fully covered—transcription alone, tone analysis alone, and combined transcript-plus-tone analysis—along with setup, key management, credit checking, and model selection. There are no obvious dead ends in using the API from first setup to running analyses.

Resources