MCP Fish Server
This server provides MCP tools for Fish Audio text-to-speech and voice model management via AceDataCloud.
Generate natural-sounding speech from text using Fish TTS models (s1, s2-pro, s2.1-pro).
Choose output formats (mp3/wav/pcm), set bitrate, sample rate, temperature, top-p, latency, prosody, and other synthesis parameters.
Use a saved voice by
reference_idor perform one-shot voice cloning with a public HTTPS reference audio URL and its exact transcript.Submit generation tasks asynchronously and receive callback URLs or poll for results.
Check the status/result of individual generation tasks with
fish_get_task.Batch-query multiple task statuses with
fish_get_tasks_batch.List, search, filter, and paginate the Fish voice model library with
fish_list_models.Fetch detailed metadata for a specific voice model with
fish_get_model.Get a comprehensive usage guide for the Fish TTS tools with
fish_get_usage_guide.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Fish ServerConvert this text to speech: Welcome to Fish Audio."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Fish Server
A Model Context Protocol (MCP) server for Fish Audio TTS (Text-to-Speech) via the AceDataCloud platform. Generate natural-sounding speech and explore the Fish voice model library.
Features
High-quality TTS: Generate speech from text via Fish Audio models
Voice library: Browse, search, and fetch metadata for Fish voice models
Asynchronous tasks: Submit generation tasks and poll for results
Batch task lookup: Query multiple task results in one call
One-shot voice cloning
Pass one public HTTPS reference audio URL plus its exact transcript. This conditions only the current TTS request and does not create a reusable voice model:
fish_generate_audio(
text="New speech in the referenced voice",
reference_audio_url="https://cdn.acedata.cloud/reference.mp3",
reference_text="The exact words spoken in the reference audio",
)Use reference_id for saved or public voices, and the one-shot reference fields for a temporary voice. Do not combine them. Reference audio supports MP3/WAV and should be 10–270 seconds. Billing remains based on the target text's UTF-8 byte count.
Related MCP server: Fish Audio MCP Server
Installation
pip install mcp-fishConfiguration
Set your AceDataCloud API token:
export ACEDATACLOUD_API_TOKEN=your_token_hereGet your token from https://platform.acedata.cloud.
Usage
stdio mode (default)
mcp-fishHTTP mode
mcp-fish --transport http --port 8000Tool Reference
Tool | Description |
| Generate speech from text via a Fish voice model |
| List available Fish voice models |
| Fetch metadata for a specific Fish voice model |
| Get the status / result of a generation task |
| Batch-fetch the status / result of multiple tasks |
| Get the API usage guide |
Documentation
License
MIT — see LICENSE at the repository root.
Available Tools
6 toolsfish_generate_audioBInspect
Generate speech audio from text using Fish TTS.
Use this when:
- You want to convert text to speech
- You need AI-generated audio narration
Returns:
JSON response containing task_id and audio data when complete.
Example:
fish_generate_audio(
text="Hello, welcome to our service!",
reference_id="d7900c21663f485ab63ebdb7e5905036"
)
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | The text to synthesize. Required. | |
| async | No | Whether to process the request asynchronously. | |
| model | No | The TTS model to use. Supported values: 's1', 's2-pro', 's2.1-pro'. | s2-pro |
| top_p | No | Top-p nucleus sampling parameter. | |
| format | No | Output audio format. Defaults to 'mp3'. | mp3 |
| prompt | No | Deprecated alias for `text`. | |
| latency | No | Latency mode. Supported values: 'normal', 'balanced'. | |
| prosody | No | Prosody overrides forwarded to the upstream. | |
| voice_id | No | Deprecated alias for `reference_id`. | |
| normalize | No | Whether the upstream should apply text normalization. | |
| references | No | One-shot voice clone reference: one object with a public HTTPS audio URL and the exact transcript. Cannot be combined with reference_id. | |
| mp3_bitrate | No | MP3 bit rate when format='mp3'. Supported values: 64, 128, 192. | |
| sample_rate | No | Sampling rate of the output audio (e.g. 16000, 22050, 44100). | |
| temperature | No | Sampling temperature (0.0-1.0). | |
| callback_url | No | Optional callback URL to receive the result asynchronously. If provided, the API returns immediately with a task_id. | |
| chunk_length | No | Chunk length passed through to the upstream synthesiser. | |
| reference_id | No | Voice model id, or a list of voice model ids. Default example voice model ID: d7900c21663f485ab63ebdb7e5905036. | |
| max_new_tokens | No | Maximum number of new tokens to generate. | |
| reference_text | No | Exact transcript for reference_audio_url. | |
| min_chunk_length | No | Minimum chunk length. | |
| repetition_penalty | No | Repetition penalty applied during generation. | |
| reference_audio_url | No | Convenience HTTPS audio URL for one-shot voice cloning. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the JSON return shape but omits critical behavior such as async/callback_url returning a task_id before audio is ready and the need to poll fish_get_task for results. This is a significant transparency gap for a complex synthesis API.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The first sentence is an efficient purpose statement and the example is useful. However, the 'Use this when' bullets largely restate the first sentence ('convert text to speech' is nearly identical to 'generate speech audio from text'), adding redundancy without new information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a complex tool with 22 optional parameters, asynchronous modes, and voice-cloning options, yet the description only covers the basic synchronous path. It omits operational guidance for async/callback_url, references/reference_audio_url, and retrieving results via fish_get_task, so an agent could easily misuse the tool for non-default use cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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. The example adds practical semantics for text and reference_id, but the description does not explain parameter relationships like references vs reference_id or async vs callback_url, which the schema also leaves implicit.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific action ('Generate speech audio from text') and the service ('Fish TTS'), which clearly distinguishes it from the sibling get/list tools. The 'Use this when' bullets reinforce the purpose and leave no doubt about what the tool is for.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit 'Use this when' conditions for text-to-speech and narration, giving clear invocation context. It does not name alternatives or exclusions, but no sibling tool generates audio, so the guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fish_get_modelAInspect
Get a Fish voice model by ID.
Returns:
JSON response from /fish/model/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| model_id | Yes | The unique identifier of the voice model to fetch. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavior. It states that the tool returns a 'JSON response from /fish/model/{id}', giving a minimal glimpse into the HTTP call and return format. However, it does not mention any side effects, error conditions, or required permissions, which is a minor gap for a read-only operation but acceptable given the simplicity.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, consisting of two short sentences totaling under 20 words. It efficiently conveys the purpose and return type without any unnecessary prose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's trivial complexity, a complete parameter schema, and the presence of an output schema, the description is mostly sufficient. It clearly identifies the action and the endpoint. However, it lacks a mention of how this relates to sibling tools like fish_list_models, which would help an agent decide when to use this tool. This is a minor gap, but otherwise the description covers all essential context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers the single parameter model_id with a clear description, so the schema fully explains its meaning. The tool description adds no additional information about the parameter beyond that, meeting the baseline but providing no extra value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the function: 'Get a Fish voice model by ID.' This uses a specific verb and resource, and the 'by ID' explicitly distinguishes it from sibling tools like fish_list_models. The return note about the endpoint adds clarity without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when you need a specific model by ID, but it gives no explicit guidance about when to use this tool versus alternatives like fish_list_models or fish_get_task. It does not mention any exclusions or when to prefer alternatives, so the usage context is only inferred from the tool's name and parameter requirements.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fish_get_taskAInspect
Query the status and result of a Fish audio generation task.
Use this to check if a task is complete and retrieve the resulting audio URL.
Task states:
- 'pending': Task is queued — keep polling
- 'processing': Task is being processed — keep polling
- 'complete': Task finished successfully
- 'failed': Task failed (check error message)
Returns:
Task status and result data including audio URL.
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | The task ID returned from a fish_generate_audio request. This is the 'task_id' field in the response. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses task states and result behavior (including audio URL and error message), but omits details like whether the operation is read-only, possible 404 errors, or polling frequency limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a clear opening sentence, bullet-point task states, and a concise return summary. No redundant information; every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a low-complexity status-check tool with an output schema available, the description covers essential aspects: purpose, states, and expected result. It lacks a note about error handling (e.g., task not found), but this is minor given the schema presence.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There is only one parameter, task_id, and the schema provides full description (100% coverage) including its source from fish_generate_audio. The tool description adds no extra parameter context, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Query the status and result of a Fish audio generation task' with a specific verb and resource. The singular 'a task' differentiates it from sibling fish_get_tasks_batch, and the mention of retrieving audio URL clarifies its purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly instructs 'Use this to check if a task is complete and retrieve the resulting audio URL' and provides polling guidance via task states ('keep polling'). However, it does not mention alternatives 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.
fish_get_tasks_batchAInspect
Query the status of multiple Fish tasks at once.
Efficiently checks the status of multiple audio generation tasks in a
single request.
Returns:
Status and result data for all queried tasks.
| Name | Required | Description | Default |
|---|---|---|---|
| task_ids | Yes | List of task IDs to query status for. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden. It discloses the read-only nature ('Query') and return contents, but does not detail error behavior, rate limits, or potential side effects. This is adequate for a status query but 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences with no fluff, front-loads the primary purpose in the first sentence, and every sentence conveys meaningful information (purpose, efficiency, return data).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple tool (one parameter, output schema provided), the description is sufficiently complete: it states what the tool does and what it returns. It could have explicitly mentioned the singular alternative or any limits, but this is not necessary for basic usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides 100% coverage for the single parameter task_ids ('List of task IDs to query status for'). The description adds no extra semantics beyond what the schema already states, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Query the status of multiple Fish tasks at once' with a specific verb and resource, and distinguishes it from the singular sibling fish_get_task by emphasizing 'multiple' and 'batch' efficiency.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It implies when to use this tool ('in a single request' for efficiency) versus repeatedly calling a single-task tool, but does not explicitly name the alternative fish_get_task or state exclusions. The context is clear enough for an agent to infer the batch use case.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fish_get_usage_guideAInspect
Get a comprehensive guide for using the Fish TTS tools.
Provides detailed information on how to use the Fish tools effectively,
including parameters, examples, and best practices.
Returns:
Complete usage guide for Fish TTS tools.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must carry the full burden of behavioral disclosure. It states that the tool returns a 'Complete usage guide', which tells the user the primary output. It does not explicitly state that it is read-only or non-destructive, but that is obvious for a guide tool. It could mention that no state is changed, but the description adequately conveys its non-mutating nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the primary purpose. The 'Returns:' line somewhat duplicates the initial statement but is short. Overall, every sentence contributes useful information, and there is little fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is a simple guide with no parameters and a self-explanatory output. An output schema exists but isn't detailed in the prompt, so the description's mention of 'parameters, examples, and best practices' gives adequate context about the content of the returned guide. It is complete enough for an agent to decide when to invoke it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
This tool has zero parameters, and the input schema is empty. The baseline for zero-parameter tools is 4. The description adds no parameter-specific semantics because there are no parameters to explain, which is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and a clear resource ('usage guide for Fish TTS tools'), and it is easily distinguished from sibling tools that perform actual TTS operations or model queries. It explicitly states this is a guide for using the Fish tools, making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies when to use this tool: when you need guidance on how to use the Fish TTS tools effectively. It mentions parameters, examples, and best practices, which signals the type of information provided. However, it does not explicitly mention alternatives or exclusions, but for a guide tool this context is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fish_list_modelsBInspect
List available Fish voice models from the API.
Returns:
JSON response from /fish/model.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Filter by a single tag. | |
| self | No | When true, only return models owned by the calling account. | |
| title | No | Filter by partial title match. | |
| sort_by | No | Sort by field accepted by upstream (e.g. created_at, task_count). | |
| language | No | Filter by language code (e.g. en, zh). | |
| author_id | No | Filter by author id. | |
| page_size | No | Number of items per page. Defaults to 10. | |
| page_number | No | 1-based page number. Defaults to 1. | |
| title_language | No | Filter by title language. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must bear the full burden of explaining behavior. It implies a read-only operation by using 'List', but it does not explicitly state that no modifications occur, nor does it mention pagination, rate limits, or any potential side effects. The return statement ('JSON response') is minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, using only two sentences. This is efficient and avoids any fluff, making it easy for an agent to parse. The structure is clear: action + resource, followed by a straightforward return note.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema is undefined and the tool lists models, the description lacks essential context. It does not state that the response contains a list of models, nor does it mention that pagination is supported (despite pagination parameters existing). This leaves the agent guessing about the structure and breadth of the response.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers all 9 parameters with descriptions, meeting the high coverage baseline. However, the description adds no extra parameter context—it merely repeats the endpoint. Since schema coverage is 100%, the baseline of 3 is appropriate, but the description could have clarified how these parameters interact (e.g., filtering by tag vs. language).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and the resource ('available Fish voice models'), which is unambiguous. It effectively distinguishes this tool from sibling tools like fish_generate_audio and fish_get_model, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus the alternatives. The description does not mention that this should be used for browsing models, or that fish_get_model should be used for a specific model, leaving the selection criteria entirely unaddressed.
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 tool update
v0.1.3- Changed
fish_generate_audio7 fields changed- added
Input schema / $defsAdded value: +{ + "FishReference": { + "description": "One-shot voice reference hosted at a public HTTPS URL.", + "properties": { + "audio": { + "format": "uri", + "maxLength": 2083, + "minLength": 1, + "title": "Audio", + "type": "string" + }, + "text": { + "maxLength": 10000, + "minLength": 1, + "title": "Text", + "type": "string" + } + }, + "required": [ + "audio", + "text" + ], + "title": "FishReference", + "type": "object" + } +} - added
Input schema / properties / reference_audio_urlAdded value: +{ + "anyOf": [ + { + "format": "uri", + "maxLength": 2083, + "minLength": 1, + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Convenience HTTPS audio URL for one-shot voice cloning.", + "title": "Reference Audio Url" +} - changed
Input schema / properties / reference_id / anyOfPrevious value: -[ - { - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + { + "type": "string" + }, + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } +] - changed
Input schema / properties / reference_id / descriptionPrevious value: -"Voice model id (single speaker). Default example voice model ID: d7900c21663f485ab63ebdb7e5905036."New value: +"Voice model id, or a list of voice model ids. Default example voice model ID: d7900c21663f485ab63ebdb7e5905036." - added
Input schema / properties / reference_textAdded value: +{ + "anyOf": [ + { + "maxLength": 10000, + "minLength": 1, + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Exact transcript for reference_audio_url.", + "title": "Reference Text" +} - changed
Input schema / properties / references / anyOfPrevious value: -[ - { - "items": { - "additionalProperties": true, - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } -]New value: +[ + { + "items": { + "$ref": "#/$defs/FishReference" + }, + "maxItems": 1, + "minItems": 1, + "type": "array" + }, + { + "type": "null" + } +] - changed
Input schema / properties / references / descriptionPrevious value: -"Inline reference samples forwarded to the upstream."New value: +"One-shot voice clone reference: one object with a public HTTPS audio URL and the exact transcript. Cannot be combined with reference_id."
2 tool updates
v0.1.1- Changed
fish_generate_audio2 fields changed- added
Input schema / properties / asyncAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Whether to process the request asynchronously.", + "title": "Async" +} - changed
Input schema / properties / mp3_bitrate / anyOfPrevious value: -[ - { - "type": "integer" - }, - { - "type": "null" - } -]New value: +[ + { + "enum": [ + 64, + 128, + 192 + ], + "type": "integer" + }, + { + "type": "null" + } +]
- Changed
fish_list_models2 fields changed- added
Input schema / properties / selfAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "description": "When true, only return models owned by the calling account.", + "title": "Self" +} - removed
Input schema / properties / self_onlyRemoved value: -{ - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "default": null, - "description": "When true, only return models owned by the calling account.", - "title": "Self Only" -}
6 tool updates
v0.1.0- First observed
fish_generate_audio - First observed
fish_get_model - First observed
fish_get_task - First observed
fish_get_tasks_batch - First observed
fish_get_usage_guide - First observed
fish_list_models
TDQS
Each tool has a clear, distinct role: generating audio, retrieving individual models, listing models, checking single or batch task status, and providing usage guidance. There is no meaningful overlap between any of the tools.
All tools follow a consistent fish_ prefix with a clear verb_noun pattern: generate_audio, get_model, get_task, get_tasks_batch, get_usage_guide, list_models. The naming is predictable and easy to navigate.
Six tools is an appropriate, well-scoped count for a TTS-focused server. Each tool serves a necessary function without redundancy or bloat.
The surface covers the core generation workflow: create a task, poll its status, check batches, and browse voice models. Minor gaps like canceling a task or listing all tasks without IDs are absent, but the main workflow is fully supported.
Maintenance
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
AI voice generation: text-to-speech and voice cloning from any MCP client.
AI content generation with 50+ models: image, video, TTS, voice cloning, and more.
Create, inspect, and manage Wubble music, speech, voice, and sound-effect requests through MCP.
Hosted pay-per-use TTS: 54 neural voices, 9 languages incl. Brazilian Portuguese. $10 free credits.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables voice cloning and speech synthesis through Alibaba Cloud's Bailian and DashScope platforms. It provides tools to create, manage, and synthesize audio using custom cloned voice profiles.-
- AlicenseBqualityDmaintenanceEnables natural language-driven speech synthesis using Fish Audio's Text-to-Speech API, supporting multiple voices, streaming, and flexible configuration.221MIT
- AlicenseAqualityFmaintenanceEnables text-to-speech conversion using ElevenLabs API with voice management, streaming support, and multiple models.51MIT
- AlicenseNot gradedqualityDmaintenanceProvides text-to-speech functionality using OpenAI's TTS API, enabling text-to-speech conversion, voice listing, and model listing.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/AceDataCloud/FishMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server