Skip to main content
Glama
vocea-admin

@vocea.app/mcp-server

Official
by vocea-admin

@vocea.app/mcp-server

MCP (Model Context Protocol) server for Vocea — lets AI agents generate speech, transcribe audio, and manage voices.

Installation

npm install -g @vocea.app/mcp-server

Usage with Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "vocea": {
      "command": "vocea-mcp",
      "env": {
        "VOCEA_API_KEY": "vca_your_api_key"
      }
    }
  }
}

Available Tools

Tool

Description

vocea_generate_audio

Convert text to speech

vocea_list_voices

List your cloned voices

vocea_list_public_voices

Browse community voices

vocea_transcribe

Transcribe audio (base64) to text

vocea_get_credits

Check credit balance

vocea_get_audio

Get audio details and CDN URL

Environment Variables

Variable

Required

Description

VOCEA_API_KEY

Yes

API key starting with vca_

VOCEA_BASE_URL

No

Override base URL (default: https://vocea.app/api)

Running Locally

VOCEA_API_KEY=vca_xxx node dist/index.js

Available Tools

6 tools
vocea_generate_audioB

Convert text to speech using a Vocea voice. Returns an audio URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
voice_idYesVoice UUID to use for synthesis
textYesText to convert to speech (max 10000 chars)
language_codeYesLanguage code, e.g. 'en', 'es', 'fr'
emotionNoEmotional tone (default: neutral)
speaking_rateNoSpeaking rate multiplier 0.5–1.5 (default 1.0)

TDQS

B3/5.0
Behavior2/5

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

Without annotations, the description must disclose behavioral traits. It only states the output is an audio URL but does not mention if the URL is temporary, any rate limits, synchronous/asynchronous behavior, or error conditions. Minimal transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very short and front-loaded, but it is too brief. While concise, it does not provide enough detail to fully inform an AI agent. It lacks elaboration that would justify its brevity.

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

Completeness2/5

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

Given 5 parameters, no output schema, and no annotations, the description is insufficient. It does not explain how to use optional parameters like emotion or speaking_rate, nor does it describe the return format beyond 'audio URL'. Incomplete for real-world use.

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 schema already documents all parameters. The description adds no additional meaning beyond the schema. Baseline score of 3 is appropriate.

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 clearly states the verb 'Convert text to speech' and the resource 'using a Vocea voice', and specifies the output 'Returns an audio URL'. It effectively distinguishes from sibling tools like vocea_transcribe (speech to text).

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 usage guidelines are provided. The description does not specify when to use this tool versus alternatives such as vocea_get_audio or vocea_list_voices, nor does it mention any prerequisites or context.

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

vocea_get_audioA

Get details (including CDN URL) for a previously generated audio.

ParametersJSON Schema
NameRequiredDescriptionDefault
audio_idYes

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries full burden. It merely states the action without disclosing behavioral traits such as read-only nature, error conditions for invalid audio_id, or side effects. Lacks depth.

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?

One sentence of 9 words, front-loaded with the verb 'Get'. Every word earns its place with no redundancy.

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

Completeness3/5

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

Given no output schema and a simple tool, the description is minimally adequate but fails to detail what 'details' include beyond CDN URL. It does not specify response structure, leaving gaps for the agent.

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?

The single parameter audio_id has no schema description, and schema coverage is 0%. The description adds minimal context by referring to 'a previously generated audio', which implies audio_id identifies that audio, but does not specify format or origin.

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?

Clearly states the tool retrieves details including CDN URL for a previously generated audio, with a specific verb and resource. It distinguishes itself from sibling tools like vocea_generate_audio (creation) and vocea_list_voices (listing).

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

Usage Guidelines3/5

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

Implies usage after audio generation by stating 'previously generated audio', but provides no explicit guidance on when to use this tool versus alternatives like vocea_get_credits or quando not to use it.

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

vocea_get_creditsA

Get the current credit balance for the authenticated user.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the behavioral burden. 'Get' implies a read operation, but the description does not explicitly state that it is read-only or safe. It lacks details on authentication requirements or potential side effects, though the term 'balance' suggests no destructive actions.

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 a single sentence that conveys the core purpose efficiently. It is front-loaded and contains no extraneous information.

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 simplicity of the tool (no parameters, no output schema), the description fully covers what the agent needs to know: what it does and for whom.

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?

The input schema has zero parameters, so baseline is 4 according to calibration rules. The description adds no parameter details, but none are needed since schema coverage is 100%.

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 uses the specific verb 'Get' and identifies the resource as 'credit balance' for the 'authenticated user', clearly distinguishing it from sibling tools that deal with audio generation or listing.

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

Usage Guidelines4/5

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

The description implies usage when the agent needs the credit balance. While there are no explicit when-not-to-use conditions or alternatives, the sibling tools are unrelated, so the context is clear.

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

vocea_list_public_voicesC

List public community voices available for use.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
ageRangeNo

TDQS

C2.5/5.0
Behavior2/5

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

No annotations provided, and the description does not disclose behavioral traits such as pagination behavior, rate limits, or whether the list is sorted. It lacks transparency beyond the basic action.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely short (one sentence), but it is under-specified rather than appropriately concise. It omits necessary details that could be included without verbosity.

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

Completeness2/5

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

Given the lack of output schema and low schema coverage, the description is insufficient. It does not explain expected return format, defaults, or the effect of optional parameters, leaving the agent underinformed.

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

Parameters2/5

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

Schema description coverage is 0%, meaning the input schema has no descriptions. The tool description adds no meaning to parameters like 'page' or 'ageRange', relying solely on their names which may be ambiguous.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb (list) and resource (public community voices), giving a specific purpose. However, it does not distinguish from the sibling 'vocea_list_voices', which might list all voices including private ones.

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 on when to use this tool versus alternatives like 'vocea_list_voices' or 'vocea_generate_audio'. No context on prerequisites or exclusions.

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

vocea_list_voicesB

List the authenticated user's cloned voices.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default 1)
limitNoResults per page (default 20)

TDQS

B3.1/5.0
Behavior2/5

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

No annotations provided; description relies solely on 'List' implying read-only, but lacks details on authentication, rate limits, pagination behavior, or response format.

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?

Single sentence is concise and front-loaded. Efficient but could benefit from structured sections (e.g., auth info).

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

Completeness2/5

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

Absence of output schema and lack of details about return structure (e.g., array of voice objects) leaves the agent guessing about response format and fields.

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 coverage is 100% with descriptions for page and limit. Description adds no extra meaning to parameters beyond what schema already provides.

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 specific verb 'List' and resource 'cloned voices'. It clearly distinguishes from sibling 'vocea_list_public_voices' by specifying 'authenticated user's cloned voices'.

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 on when to use this tool versus alternatives like list_public_voices or when to apply pagination. The description is purely functional.

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

vocea_transcribeB

Transcribe audio from a base64-encoded string to text (STT).

ParametersJSON Schema
NameRequiredDescriptionDefault
audio_base64YesBase64-encoded audio file (mp3, wav, ogg, webm, flac, max 10MB)
mime_typeNoMIME type, e.g. audio/mpegaudio/mpeg
languageNoBCP-47 language code, e.g. en-US (default: es-ES)

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits. It only states the basic function and does not mention any limitations, authentication needs, or side effects.

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?

A single sentence that is concise and front-loaded with the core action; no superfluous words.

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

Completeness3/5

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

The description is minimal but covers the main purpose; however, it lacks details about output format, maximum file size (present in schema but not description), and any behavioral context needed for a complete understanding.

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?

The input schema has 100% coverage with descriptions for each parameter, so the description adds no additional meaning beyond the schema. Baseline score of 3 is appropriate.

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 clearly states the verb 'Transcribe' and the resource 'audio from a base64-encoded string to text', and it's distinct from sibling tools like audio generation or listing voices.

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 on when to use this tool versus alternatives; no mention of prerequisites or when not to use it.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updatesv0.1.0
    • First observedvocea_generate_audio
    • First observedvocea_get_audio
    • First observedvocea_get_credits
    • First observedvocea_list_public_voices
    • First observedvocea_list_voices
    • First observedvocea_transcribe

TDQS

A3.5/5.0
Disambiguation5/5

Each tool targets a distinct action: generating, retrieving, transcribing audio, listing different voice sets, and checking credits. No functional overlap exists.

Naming Consistency5/5

All tools use a consistent 'vocea_' prefix followed by a verb_noun snake_case pattern (e.g., generate_audio, list_public_voices). Even 'transcribe' fits as a single-word verb.

Tool Count5/5

Six tools cover the core TTS/STT domain without bloat. Each tool serves a clear, necessary purpose, making the set well-scoped.

Completeness4/5

Core workflows (generate, get, transcribe, check credits, browse voices) are covered. Missing features like voice cloning or deletion are minor gaps given the server's focus.

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vocea-admin/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server