Skip to main content
Glama

Voice enhance

voice_enhance
DestructiveIdempotent

Re-voice audio with ElevenLabs speech-to-speech. SYNC. Costs 10 credits. Two source modes: pass projectId (a COMPLETED project; 0 credits if already enhanced), OR pass r2Key to re-voice a raw uploaded clip with no project — get the key from create_upload (then PUT the bytes) or import_asset_from_url. Returns the re-voiced audio track. voiceId accepts a preset name (adam, michael, rachel, bella, josh, ethan, …), an alias (male-professional, female-casual, dramatic, …), or a raw ElevenLabs voice id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
r2KeyNoUploaded clip key from create_upload/import_asset_from_url (atomic mode)
voiceIdYesPreset name, alias, or raw ElevenLabs voice id
projectIdNoCompleted project UUID (project mode)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Adds real behavior beyond the annotations: synchronous execution, a 10-credit cost, and a zero-credit path for already-enhanced projects (consistent with idempotentHint=true). It does not, however, explain the destructiveHint=true flag — presumably that re-voicing a completed project replaces its existing audio track, which is exactly the consequence an agent should warn a user about.

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?

Front-loaded with the core operation and the SYNC/cost facts, then the two modes. Every sentence carries information, though the voiceId example lists and parentheticals make it dense enough that a reader must parse carefully rather than skim.

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?

With no output schema, the description does its duty by stating the return ('Re-voiced audio track'), the async/sync nature (SYNC), the cost, and both input paths. What's missing is failure/edge behavior — e.g. what happens if the target project isn't COMPLETED, or whether the original audio is overwritten.

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 baseline is 3, and the description goes further by spelling out the required state of projectId ('a COMPLETED project') and enumerating what voiceId accepts (preset names, aliases, raw ElevenLabs ids). The mode-selection guidance for projectId vs r2Key is the genuinely additive value.

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?

States a specific verb+resource ('Re-voice audio with ElevenLabs speech-to-speech') and immediately names the mechanism, distinguishing it from neighbors like dub_video, swap_upload, or ai_edit_upload. An agent can tell what it does and what it returns without opening the schema.

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?

Explicitly enumerates the two mutually exclusive source modes — projectId (COMPLETED project) vs r2Key (raw clip) — and even routes the agent to the sibling tools that produce each input (create_upload, import_asset_from_url). The credit condition ('0 credits if already enhanced') is stated as a usage decision factor.

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.

Resources