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 (full local pipeline: transcription, emotion, style, affect, analysis) or oruk-fourier (transcript plus native 15-label emotion).
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.
diarizeNoLabel speakers (oruk-resonance only; the model is switched to oruk-resonance automatically). Speakers are located with pyannoteAI diarization, then Resonance scores each speaker turn, so every segment carries a speaker field with its own text, emotions, and styles. Use for calls, meetings, and interviews. Adds $0.0040 per audio minute.
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.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed3 schema fields changed
    • addedInput schema / properties / diarize
      Added value: +{
      +  "description": "Label speakers (oruk-resonance only; the model is switched to oruk-resonance automatically). Speakers are located with pyannoteAI diarization, then Resonance scores each speaker turn, so every segment carries a speaker field with its own text, emotions, and styles. Use for calls, meetings, and interviews. Adds $0.0040 per audio minute.",
      +  "type": "boolean"
      +}
    • changedInput schema / properties / model / description
      Previous value: -"oruk-resonance (default for transcription/analysis, highest accuracy) or oruk-spectra-1 (default for tone, most efficient)."New value: +"oruk-resonance (full local pipeline: transcription, emotion, style, affect, analysis) or oruk-fourier (transcript plus native 15-label emotion)."
    • changedInput schema / properties / model / enum
      Previous value: -[
      -  "oruk-spectra-1",
      -  "oruk-resonance"
      -]New value: +[
      +  "oruk-resonance",
      +  "oruk-fourier"
      +]
  2. Changed2 schema fields changed
    • changedInput schema / properties / model / description
      Previous value: -"oruk-fourier (transcript plus native 15-label emotion), oruk-resonance (full local pipeline), or oruk-spectra-1 (efficient tone analysis)."New value: +"oruk-resonance (default for transcription/analysis, highest accuracy) or oruk-spectra-1 (default for tone, most efficient)."
    • changedInput schema / properties / model / enum
      Previous value: -[
      -  "oruk-spectra-1",
      -  "oruk-resonance",
      -  "oruk-fourier"
      -]New value: +[
      +  "oruk-spectra-1",
      +  "oruk-resonance"
      +]
  3. Changed2 schema fields changed
    • changedInput schema / properties / model / description
      Previous value: -"oruk-resonance (default for transcription/analysis, highest accuracy) or oruk-spectra-1 (default for tone, most efficient)."New value: +"oruk-fourier (transcript plus native 15-label emotion), oruk-resonance (full local pipeline), or oruk-spectra-1 (efficient tone analysis)."
    • changedInput schema / properties / model / enum
      Previous value: -[
      -  "oruk-spectra-1",
      -  "oruk-resonance"
      -]New value: +[
      +  "oruk-spectra-1",
      +  "oruk-resonance",
      +  "oruk-fourier"
      +]
  4. Changed2 schema fields changed
    • changedInput schema / properties / model / description
      Previous value: -"oruk-fourier (transcript plus native 15-label emotion), oruk-resonance (full local pipeline), or oruk-spectra-1 (efficient tone analysis)."New value: +"oruk-resonance (default for transcription/analysis, highest accuracy) or oruk-spectra-1 (default for tone, most efficient)."
    • changedInput schema / properties / model / enum
      Previous value: -[
      -  "oruk-spectra-1",
      -  "oruk-resonance",
      -  "oruk-fourier"
      -]New value: +[
      +  "oruk-spectra-1",
      +  "oruk-resonance"
      +]
  5. Changed2 schema fields changed
    • changedInput schema / properties / model / description
      Previous value: -"oruk-resonance (default for transcription/analysis, highest accuracy) or oruk-spectra-1 (default for tone, most efficient)."New value: +"oruk-fourier (transcript plus native 15-label emotion), oruk-resonance (full local pipeline), or oruk-spectra-1 (efficient tone analysis)."
    • changedInput schema / properties / model / enum
      Previous value: -[
      -  "oruk-spectra-1",
      -  "oruk-resonance"
      -]New value: +[
      +  "oruk-spectra-1",
      +  "oruk-resonance",
      +  "oruk-fourier"
      +]
  6. First observed

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds behavioral context beyond annotations: it states the accepted input formats (public URL or base64 bytes), size limits (≤30 MB / ≤60 min), and default output behavior ('Returns compact summaries by default'). It also mentions the diarization behavior adds cost per minute and switches model automatically, which is transparent about side effects. One gap: it doesn't explicitly say whether audio data is retained or processed in the cloud, but the provided details already go beyond baseline.

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 description is five sentences, front-loaded with the core value proposition and output list, then usage context, then input constraints, then default behavior, then sibling routing. No filler or repetition. Every sentence earns its place.

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?

The tool has 7 optional parameters with 100% schema coverage, an output schema is absent, but the description sufficiently explains the purpose, input constraints, default behavior, and alternatives. For an AI agent deciding whether and how to call it, this covers the key decision points: what it returns, when to use it, what formats are accepted, and defaults. The lack of an output schema is mitigated by the description listing return components.

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?

Schema description coverage is 100%, so the schema already documents all 7 parameters with descriptions. The description adds value by clarifying high-level behavior: 'Returns compact summaries by default' aligns with the detail parameter default, and the mention of 'calibrated emotion (15 labels)' maps to the model enum semantics. It doesn't need to repeat every param detail, but it could have linked the two models to their exact output differences more explicitly. Still, given full schema coverage, this is above baseline.

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 states a specific verb ('Analyze speech') and resource ('transcript + tone'), and lists concrete outputs: transcript, tagged transcript, calibrated emotion (15 labels), speaking-style (16 labels), and time-local segments. It clearly distinguishes itself from siblings by naming oruk_transcribe_audio and oruk_analyze_tone as alternatives for words-only or tone-only needs.

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 explicit usage context: 'Use this when the user cares about both the words and the delivery — meetings, support calls, interviews, voice notes.' It also explicitly states when not to use it and which siblings to pick instead: 'For words only use oruk_transcribe_audio; for tone only use oruk_analyze_tone.' This is a textbook usage guideline.

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.4/5.0
Disambiguation5/5

The three audio-processing tools are sharply differentiated: transcribe_audio is words-only, analyze_tone is tone-only, and analyze_speech combines both. The supporting tools are also distinct in purpose, and the descriptions cross-reference each other to prevent misselection.

Naming Consistency5/5

All tool names follow a consistent oruk_ + verb + noun snake_case pattern, such as analyze_speech, list_models, and create_trial_key. The only mild exception is get_started, but it still clearly follows the verb-led style and does not create confusion.

Tool Count5/5

Seven tools is well-scoped for a speech analysis API MCP server: three core audio-processing tools plus four supporting tools for setup, keys, credits, and model information. Each tool has a clear purpose and none feel redundant or extraneous.

Completeness5/5

The tool surface covers the full user journey for the stated domain: getting started, obtaining a trial key, checking credits, listing models, transcribing audio, analyzing tone, and doing combined transcription plus tone analysis. There are no obvious dead ends or missing core operations for this API's scope.

Resources