Skip to main content
Glama

minimax-mcp-api

A Model Context Protocol (MCP) server written in NestJS that wraps the MiniMax platform APIs and exposes them as MCP tools over stdio.

Prerequisites

  • Node.js ≥ 22 (per engines.node in package.json). Older versions lack the TypeScript target support used in tsconfig.build.json.

Related MCP server: minimax-llm-mcp

Install

npm install

Build

npm run build

Run (stdio)

node dist/main.js

Environment variables

Variable

Required

Default

Description

MINIMAX_API_KEY

Yes

Bearer token for the MiniMax API

MINIMAX_API_URL

No

https://api.minimax.io

Base URL for the MiniMax API

LOG_LEVEL

No

log

One of debug | log | warn | error

NODE_ENV

No

development

One of development | production | test

Copy .env.example to .env and fill in MINIMAX_API_KEY before running.

MCP tools

Domain

Tool

Endpoint

Speech

speech_t2a_http

POST /v1/t2a_v2

Speech

speech_t2a_async_create

POST /v1/t2a_async_v2

Speech

speech_t2a_async_query

GET /v1/query/t2a_async_query_v2

Speech

speech_voice_clone

POST /v1/voice_clone

Video

video_text_to_video

POST /v1/video_generation

Video

video_image_to_video

POST /v1/video_generation

Video

video_agent_create

POST /v1/video_generation

Video

video_agent_query

GET /v1/query/video_template_generation

Image

image_text_to_image

POST /v1/image_generation

Image

image_to_image

POST /v1/image_generation

Music

music_generate

POST /v1/music_generation

File

files_upload

POST /v1/files/upload

File

files_list

GET /v1/files/list

File

files_retrieve

GET /v1/files/retrieve

File

files_retrieve_content

GET /v1/files/retrieve_content

File

files_delete

DELETE /v1/files/delete

(16 tools total over 5 domains.)

Configure Claude Desktop

Add to ~/.config/claude_desktop_config.json (note: the path to dist/main.js must be absolute):

{
  "mcpServers": {
    "minimax": {
      "command": "node",
      "args": ["/abs/path/to/minimax-mcp-api/dist/main.js"],
      "env": {
        "MINIMAX_API_KEY": "sk-..."
      }
    }
  }
}

Probe with MCP Inspector

npm run inspect

Troubleshooting

  • 401/403 from any toolMINIMAX_API_KEY is missing, malformed, or revoked. Verify with echo $MINIMAX_API_KEY and recopy the key from the MiniMax dashboard.

  • npm run build fails with TypeScript errors — Node version mismatch. Check node -v returns v22.x; older Node lacks the target support configured in tsconfig.build.json.

  • Claude Desktop can't connect — confirm args[0] is an absolute path to dist/main.js (not relative) and that the file exists (run npm run build first).

  • MINIMAX_API_URL change has no effect — stdio MCP servers read environment variables at startup only. Restart Claude Desktop (or the stdio process) after editing .env.

License

UNLICENSED — private project, not for redistribution.

Available Tools

16 tools
files_deleteB

Delete a file by file_id.

ParametersJSON Schema
NameRequiredDescriptionDefault
file_idYesNumeric file_id returned by files_upload

TDQS

B3.1/5.0
Behavior2/5

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

No annotations provided; description only states 'Delete' without disclosing behavioral traits like irreversibility, permissions, 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.

Conciseness4/5

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

Extremely concise single sentence, though it omits important details for a complete tool definition.

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?

Minimal description for a delete operation; lacks information about return values, effects, or error conditions.

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 description adds no new meaning beyond the schema, which already describes the file_id parameter. With 100% schema coverage, baseline 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?

Description clearly states 'Delete a file by file_id.' with a specific verb and resource, and it is distinct from sibling tools like files_upload or files_list.

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, such as conditions for deletion or prerequisites.

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

files_listB

List uploaded files, optionally filtered by purpose.

ParametersJSON Schema
NameRequiredDescriptionDefault
afterNo
limitNo
orderNo
purposeNo

TDQS

B3.1/5.0
Behavior2/5

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

Without annotations, the description carries the full burden for behavioral transparency, but it only says 'List uploaded files' and does not disclose pagination, default ordering, or any constraints. The schema suggests behavior but the description adds no value beyond the action.

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?

The description is a single sentence, concise, and front-loaded with the action. However, it could include more information about the filtering parameter, so it's not maximally informative, but still concise.

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?

The description lacks details on pagination, default behavior, and output format. Given the schema has multiple parameters and no output schema, the description should provide more context to ensure correct invocation.

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 0%, so the description must compensate. It adds meaning to the 'purpose' parameter (filtering), but does not explain 'after', 'limit', or 'order', which are likely pagination and sorting parameters. Thus, it provides partial parameter semantics.

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 a specific verb ('List') and resource ('uploaded files'), and mentions optional filtering by purpose, which clearly distinguishes it from sibling tools like files_retrieve or files_delete.

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?

The description does not provide any usage guidance or mention when to use this tool versus alternatives like files_retrieve. It only states the action and optional filtering.

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

files_retrieveA

Get metadata for a single file by file_id.

ParametersJSON Schema
NameRequiredDescriptionDefault
file_idYesNumeric file_id returned by files_upload

TDQS

A3.7/5.0
Behavior3/5

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

No annotations provided, so the description bears the burden. 'Get metadata' implies read-only, but it doesn't explicitly state non-destructiveness, error handling, or permissions. Adequate for a simple retrieval.

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?

Single sentence, no filler: 'Get metadata for a single file by file_id.' Highly concise and front-loaded.

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?

No output schema and no details on what metadata is returned. For a single-file retrieval tool, the description is adequate but lacks completeness regarding return structure.

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?

Input schema has 100% coverage describing file_id as 'Numeric file_id returned by files_upload'. The description adds minimal value beyond the schema, so baseline 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 uses 'Get metadata for a single file by file_id', which clearly specifies the verb, resource, and scope, distinguishing it from siblings like files_list (multiple files) and files_retrieve_content (content retrieval).

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?

The description implies usage (when you have a file_id and need metadata), but provides no explicit guidance on when not to use or alternatives like files_list or files_retrieve_content.

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

files_retrieve_contentA

Download a file. By default returns a summary (filename + bytes + content-type); pass as_hex=true to inline small file content as a hex string.

ParametersJSON Schema
NameRequiredDescriptionDefault
as_hexNoIf true, encode the binary content as hex. Useful for small files.
file_idYesNumeric file_id returned by files_upload

TDQS

A3.7/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 full burden. It discloses the default return format and the effect of 'as_hex', but does not mention potential limitations (e.g., file size limits, permissions, or whether the download is destructive).

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?

Two sentences, no wasted words. The key action ('Download a file') is front-loaded, and the parameter behavior is concisely explained.

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?

No output schema exists, so the description must describe return values. It does so clearly (summary fields, hex option). Given the tool's simplicity, it is complete enough for an agent to understand the behavior.

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 coverage is 100%, baseline 3. The description adds value by explaining the 'as_hex' parameter's use case ('Useful for small files') and clarifying that 'file_id' comes from 'files_upload'. This goes beyond the schema's descriptions.

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 ('Download a file') and resource ('a file'). It distinguishes default behavior (summary) from optional inline hex encoding, but does not explicitly differentiate from the sibling tool 'files_retrieve', which may have overlapping functionality.

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?

The description provides guidance on when to use the 'as_hex' parameter, but does not give context on when to use this tool versus alternatives like 'files_retrieve' 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.

files_uploadA

Upload a file (document, audio, image, etc.) for downstream use. Use purpose=voice_clone before speech_voice_clone.

ParametersJSON Schema
NameRequiredDescriptionDefault
purposeYesWhat the file will be used for; affects validation rules
filenameNoOverride filename (defaults to basename of file_path)
file_pathYesAbsolute filesystem path of the file to upload

TDQS

A3.7/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It only states the upload action and downstream use, omitting critical details like overwrite behavior, file size limits, error conditions, or side effects. This is insufficient for safe invocation.

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 two sentences, direct and free of fluff. Every word serves a purpose, making it efficient and easy to scan.

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?

While the schema covers parameters, the description lacks information about return values (e.g., file ID), supported file types, size limits, and error handling. For a mutation tool with no output schema, this leaves gaps in what to expect.

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%, so baseline is 3. The description adds one semantic hint about purpose=voice_clone but does not enhance understanding of filename or file_path beyond the schema descriptions. Minimal added 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?

The description clearly states the action ('Upload a file') and its purpose ('for downstream use'). It specifies file types (document, audio, image, etc.) and distinguishes from sibling tools like files_delete or files_list by focusing on upload.

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 provides a specific usage hint: 'Use purpose=voice_clone before speech_voice_clone.' This gives context for one scenario, but does not discuss when to use this tool vs alternatives like image_text_to_image 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.

image_text_to_imageB

Generate images from a text prompt. Returns image URLs (typically valid 24h).

ParametersJSON Schema
NameRequiredDescriptionDefault
nNo
seedNo
modelYesImage generation model id
widthNo
heightNo
promptYes
aspect_ratioNo
callback_urlNo
guidance_scaleNo
prompt_optimizerNo

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided. The description only mentions that the tool returns image URLs valid for typically 24 hours. It does not disclose authentication needs, rate limits, destructive potential, or other behavioral traits. For a generation tool with 10 parameters, this is insufficient.

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 two sentences long, front-loaded with the core function, and contains no extraneous information. Every word serves a purpose.

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 tool's complexity (10 parameters, no output schema, no annotations), the description is far from complete. It does not explain required vs optional parameters, return format details, or provide examples. A generation tool with many options needs more context.

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 only 10% (only 'model' has a description). The tool description does not explain any parameters, such as 'n', 'seed', 'width', 'height', or 'aspect_ratio'. It adds no meaning beyond the schema, which itself is sparse.

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 'generate' and resource 'images from a text prompt', distinguishing it from the sibling 'image_to_image' which presumably uses an image input. This is specific and unambiguous.

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?

The description provides no guidance on when to use this tool versus alternatives like 'image_to_image' or 'video_text_to_video'. It does not specify prerequisites, required parameters, or usage constraints beyond the prompt requirement.

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

image_to_imageC

Transform a reference image guided by an optional prompt. Returns image URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault
nNo
seedNo
modelYesImage generation model id
promptNo
strengthNo
image_urlYesReference image URL or base64
aspect_ratioNo
callback_urlNo
guidance_scaleNo

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries full burden but only states basic functionality. It does not disclose authentication needs, rate limits, potential side effects, or behavior when prompt is omitted.

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?

Single sentence is concise but lacks structure and detail. Could be expanded to include key behavioral notes while remaining succinct.

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 9 parameters, no output schema, and no annotations, the description is too sparse. It does not explain the output format beyond 'image URLs' and ignores most parameter semantics.

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 only 22% (model and image_url have descriptions). The description adds value only for the prompt parameter ('optional prompt'). Most parameters (n, seed, strength, aspect_ratio, callback_url, guidance_scale) lack explanation.

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 'transform', the resource 'reference image', and the output 'image URLs'. It effectively distinguishes from sibling tools like image_text_to_image (text-to-image) and video_image_to_video (image-to-video).

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 such as image_text_to_image or video_image_to_video. No prerequisites or exclusions mentioned.

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

music_generateA

Generate music. Provide lyrics for vocal tracks; set is_instrumental=true for instrumental. music-cover* models require audio_url/audio_base64/cover_feature_id.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelYes
lyricsNoSong lyrics; supports structure tags like [Verse], [Chorus]
promptNo
streamNo
audio_urlNo
audio_base64No
audio_settingNo
output_formatNo
is_instrumentalNo
cover_feature_idNo
lyrics_optimizerNo

TDQS

A3.6/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 fully disclose behavioral traits. It only mentions input requirements for cover models but omits details like generation time, cost, storage, rate limits, authentication, or side effects. This is insufficient for a complex tool.

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 brief and efficient: two sentences with no fluff. The first sentence states the core purpose, and the second provides critical use-case variations. Every phrase earns its place.

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?

With 11 parameters (including a nested object), no output schema, and no annotations, the description is incomplete. It fails to explain return values, error handling, or usage of many parameters (e.g., audio_setting, stream, output_format). The tool's complexity demands more comprehensive documentation.

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 only 9% (only 'lyrics' has a description). The description adds meaning for a few parameters (lyrics, is_instrumental, and cover model inputs), but the remaining nine parameters (e.g., prompt, stream, output_format, audio_setting) are left unexplained, failing to compensate for low coverage.

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 'Generate music' with a specific verb and resource. It further distinguishes subtypes: lyrics for vocal tracks, instrumental flag, and cover models requiring additional parameters. This differentiates it from sibling tools like speech, image, and video generation.

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 provides explicit guidance on when to set is_instrumental and that cover models require audio_url, audio_base64, or cover_feature_id. However, it does not explicitly state when not to use this tool or compare with alternatives, though sibling tools are distinct in media type.

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

speech_t2a_async_createA

Create an async long-text T2A task (up to 1M chars via text_file_id, or 50k via text). Returns a task_id to poll with speech_t2a_async_query.

ParametersJSON Schema
NameRequiredDescriptionDefault
volNo
textNo
modelYesT2A model identifier
pitchNo
speedNo
formatNo
bitrateNo
channelNo
emotionNo
voice_idYesSystem or cloned voice id
latex_readNo
sample_rateNo
text_file_idNo
voice_modifyNo
language_boostNo
pronunciation_dictNo
english_normalizationNo

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description discloses core async behavior, return value (task_id), and input limits, but is silent on rate limits, quotas, error states, or side effects. It is minimally adequate.

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?

Two sentences, no extraneous words, front-loads the key action and constraint. Every word earns its place.

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 tool has 17 parameters, no output schema, and no annotations, the description is too sparse. It misses default values, interaction between parameters (e.g., text vs text_file_id), and does not cover the complexity of optional fields.

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 coverage is only 12%, yet the description adds no detail beyond hinting at text and text_file_id usage. The many other parameters (vol, pitch, speed, format, etc.) are left unexplained, failing to compensate for low schema coverage.

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 explicitly states the action ('Create'), the resource ('async long-text T2A task'), and distinguishes from siblings by mentioning async nature and returning a task_id for polling with speech_t2a_async_query.

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 when to use (async, long text up to 1M chars via file, or 50k via text) and references the polling tool, but does not explicitly state when not to use or compare to alternatives like speech_t2a_http.

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

speech_t2a_async_queryA

Poll an async T2A task created by speech_t2a_async_create. Returns status (success|failed|expired|processing) and a file_id on success.

ParametersJSON Schema
NameRequiredDescriptionDefault
task_idYesReturned by speech_t2a_async_create

TDQS

A4/5.0
Behavior3/5

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

No annotations provided, so description carries full burden. It discloses that the tool returns status and optionally a file_id, and that it polls an async task (non-destructive). However, it does not mention behavior for invalid task_id, rate limits, or whether repeated polling is safe. While sufficient for a simple poll, more details would improve transparency.

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 two sentences and 132 characters. It is front-loaded with the action and resource. Every word is necessary and contributes to understanding. No redundancy or fluff.

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?

For a simple poll tool with one parameter and no output schema, the description is fairly complete. It explains the purpose, the relationship to speech_t2a_async_create, and what the tool returns. It could mention that this is a polling operation (potentially long-polling) but overall is sufficient.

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 one parameter 'task_id' with a description 'Returned by speech_t2a_async_create', which fully documents it (100% coverage). The tool description does not add additional meaning beyond the schema. Baseline is 3, and no extra value is provided.

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 tool polls an async T2A task created by speech_t2a_async_create, specifying the verb 'Poll' and the resource 'async T2A task'. It lists the possible statuses (success, failed, expired, processing) and mentions the file_id on success. This differentiates it from sibling tools like speech_t2a_async_create and speech_t2a_http.

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 explicitly states the prerequisite: the task must be created by speech_t2a_async_create. It implies the tool is for polling after creation, but does not explicitly state when not to use it or mention alternatives like speech_t2a_http for synchronous T2A. The context is clear, but lacks exclusions.

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

speech_t2a_httpA

Synchronous text-to-speech synthesis (≤10,000 chars). Returns audio URL + metadata. Use output_format="url" to receive a 24h-valid URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
volNo
textYesPlain text or SSML up to 10,000 chars
modelYesT2A model identifier
pitchNo
speedNo
formatNo
streamNo
bitrateNo
channelNo
emotionNo
voice_idYesSystem or cloned voice id
force_cbrNo
latex_readNo
sample_rateNo
voice_modifyNo
output_formatNoUse "url" to receive a 24h-valid audio URL.
subtitle_typeNo
aigc_watermarkNo
language_boostNoLanguage hint, e.g. "auto", "en", "zh"
subtitle_enableNo
pronunciation_dictNo
text_normalizationNo

TDQS

A3.5/5.0
Behavior3/5

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

No annotations provided, so description must carry the burden. It discloses synchronicity, char limit, output format option, and URL validity duration. However, it omits details on rate limits, cost implications, or behavior on exceeding limits, which would be useful for a TTS tool.

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 extremely concise at two sentences, front-loading the core purpose and key constraint (char limit). No unnecessary words or filler.

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?

With 22 parameters including nested objects and no output schema, the description fails to provide sufficient context. It only addresses char limit and output_format, ignoring other crucial parameters like voice_id, model, format, and emotion. The agent lacks information to confidently select and invoke the tool.

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 low (23%). The description only adds meaning for the output_format parameter, mentioning the 24h URL. All other parameters (e.g., vol, pitch, emotion) remain unexplained, leaving the agent without guidance on how to set them.

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 tool performs synchronous text-to-speech synthesis with a 10,000 character limit and returns an audio URL plus metadata. It distinguishes itself from async sibling tools by explicitly noting synchronicity.

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?

The description implies use for immediate audio needs but does not explicitly provide guidance on when to use this tool versus the async alternatives. No exclusion criteria or when-not scenarios are mentioned.

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

speech_voice_cloneA

Clone a voice from an uploaded file_id (purpose=voice_clone). Cloned voices must be used within 168 hours or they are auto-deleted. Returns a demo_audio preview URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
textNo
modelNo
file_idYesfile_id from files_upload with purpose=voice_clone
accuracyNo
voice_idYesUnique voice id, 8-256 chars; letter start; no trailing - or _
aigc_watermarkNo
language_boostNo
text_validationNo
need_noise_reductionNo
need_volume_normalizationNo

TDQS

A3.6/5.0
Behavior3/5

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

Disclosed the 168-hour auto-deletion and return of a demo_audio preview URL, but lacked details on auth requirements, rate limits, or side effects beyond creation.

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?

Three front-loaded sentences with no wasted words: purpose, constraint, output.

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?

Insufficient for a 10-parameter tool with low schema coverage and no output schema; many parameters like text, model, accuracy are left unexplained.

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?

Adds value by linking file_id to voice_clone purpose, but with 20% schema coverage and 10 parameters, most remain undescribed in both schema and description.

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 tool clones a voice from a file_id with purpose=voice_clone, and distinguishes it from siblings by specifying the unique voice cloning functionality.

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?

The description implies usage for voice cloning after file upload, but does not explicitly compare to alternatives or state when not to use.

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

video_agent_createB

Create a video template/agent task. Returns a task_id to poll with video_agent_query.

ParametersJSON Schema
NameRequiredDescriptionDefault
inputsYesTemplate-specific inputs as a string-keyed map (e.g. {character: "...", scene: "..."})
template_idYesVideo template/agent identifier
callback_urlNo

TDQS

B3.2/5.0
Behavior2/5

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

No annotations provided; description carries full burden. Implies async by mentioning polling, but omits explicit async behavior, error handling, permissions, or operation guarantees. Minimal behavioral disclosure.

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?

Two sentences, no redundancy. Front-loaded with action. Every word earns its place.

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?

No output schema; only mentions returning task_id. Lacks error conditions, polling frequency, success/failure indicators. For an async tool, important behavioral context is missing. Parameter coverage is adequate but incomplete.

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 67%; description adds value for 'inputs' with an example but ignores 'callback_url'. 'template_id' is adequately described. Partially compensates for schema gaps.

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?

Clearly states it creates a video template/agent task and returns a task_id. Distinguishes from sibling video_agent_query (polling) but not from video generation tools like video_text_to_video, which may overlap in use.

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?

Hints at follow-up polling with video_agent_query but lacks when-to-use vs alternatives, prerequisites, or when not to use. No explicit usage context or exclusion criteria.

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

video_agent_queryA

Poll a video task. Returns status (Preparing|Processing|Success|Fail) and a video_url valid 9h on Success.

ParametersJSON Schema
NameRequiredDescriptionDefault
task_idYestask_id returned by video_text_to_video / video_image_to_video

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description bears full responsibility. It discloses the return values, the temporary nature of the URL (valid 9h), and the status values. However, it does not mention rate limits, authentication, or error cases. The 'poll' keyword implies repeated calls, which is sufficient.

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 conveys all necessary information without redundancy. It is front-loaded with the verb and resource, then details the return.

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?

Given no output schema, the description adequately covers return values. It mentions the polling nature implicitly. Could be improved by clarifying that repeated calls are needed until a terminal status.

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 only parameter (task_id) has 100% schema description coverage, so the baseline is 3. The description does not add extra meaning beyond the schema's description.

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 'poll', the resource 'video task', and explicitly lists the return values (status and temporary video URL). It distinguishes from sibling tools like video_agent_create by focusing on querying an existing task.

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?

The description implies usage after creating a task but does not explicitly state when to use this tool versus alternatives, nor does it mention that it should be called repeatedly until completion. No exclusion guidance is provided.

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

video_image_to_videoA

Generate a video from an input image (and optional prompt). Returns a task_id — poll with video_agent_query.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelYesVideo generation model id
promptNo
durationNo
image_urlYesURL (or base64) of the input image
resolutionNo
callback_urlNo
prompt_optimizerNo

TDQS

A3.6/5.0
Behavior3/5

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

No annotations provided. The description discloses that the tool is async and returns a task_id, which is the key behavioral trait. However, it lacks details on failure modes, timeouts, or retry behavior.

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?

The description is very concise (one sentence) and front-loaded with the primary action. It could benefit from a brief list of key parameters but remains efficient.

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 7 parameters, low schema coverage, and no output schema, the description is too brief. It provides the async polling pattern but leaves many parameter details unaddressed.

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 29% (only 2 of 7 parameters have descriptions). The description adds no information about parameters like duration, resolution, callback_url, or prompt_optimizer.

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 action ('Generate a video'), the input ('from an input image'), and the optional prompt. It distinguishes from sibling 'video_text_to_video' which uses text input.

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 context (image input) and instructs to poll with 'video_agent_query'. It does not explicitly exclude other tools but the purpose is clear.

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

video_text_to_videoA

Generate a video from a text prompt. Returns a task_id — poll with video_agent_query.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelYesVideo generation model id
promptYesText description of the desired video
durationNoTarget duration in seconds
resolutionNoOutput resolution (model-dependent)
callback_urlNo
prompt_optimizerNo

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description must disclose behavioral traits. It reveals the async pattern (returns task_id, poll later) but does not address auth needs, rate limits, failure modes, or cost. The async disclosure is critical but incomplete.

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?

Two sentences, front-loaded with purpose. No redundant phrases. Every word adds value: states action, output, and next step.

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?

For a tool with 6 parameters and no output schema, the description covers the essential workflow but omits details about optional parameters (e.g., callback_url) and result structure. The async handoff is clear, but completeness could be improved with a note on polling intervals or error handling.

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 67%, so the schemas already document most parameters. The description adds context by linking the prompt parameter to 'text prompt' and implying the async flow. It does not elaborate on unresolved parameters (e.g., callback_url, prompt_optimizer) or clarify the duration/resolution enums beyond schema.

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 it generates a video from a text prompt, distinguishing it from sibling tools like video_image_to_video (image input) and video_agent_query (polling). The verb 'generate' and resource 'video' are specific, and the asynchronous handoff is mentioned.

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 gives clear usage: generate and then poll with video_agent_query. It implies when to use (text-to-video), but does not explicitly exclude alternatives or state when not to use. The sibling names provide differentiation, but the description itself lacks exclusion criteria.

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.

  1. 16 tool updatesv0.1.0
    • First observedfiles_delete
    • First observedfiles_list
    • First observedfiles_retrieve
    • First observedfiles_retrieve_content
    • First observedfiles_upload
    • First observedimage_text_to_image
    • First observedimage_to_image
    • First observedmusic_generate
    • First observedspeech_t2a_async_create
    • First observedspeech_t2a_async_query
    • First observedspeech_t2a_http
    • First observedspeech_voice_clone
    • First observedvideo_agent_create
    • First observedvideo_agent_query
    • First observedvideo_image_to_video
    • First observedvideo_text_to_video

TDQS

A3.6/5.0

Scored across 16 tools

Disambiguation5/5

Each tool targets a distinct function: file operations, image generation, music generation, speech synthesis (sync and async), voice cloning, and video generation. No two tools have overlapping purposes.

Naming Consistency4/5

Tools follow a consistent area_action pattern (e.g., files_delete, speech_t2a_async_create). Minor variations exist like 'image_to_image' versus 'image_text_to_image', and the use of 'agent' for video template tasks, but overall naming is predictable.

Tool Count4/5

16 tools cover a broad multi-modal domain without being excessive. Each tool serves a clear purpose, though some sub-areas (e.g., file management) have many tools while others have few.

Completeness4/5

File operations are complete (CRUD). Speech covers sync/async TTS and voice cloning. Video covers generation from text/image and agent tasks. Minor gaps like missing audio upload or image editing but domain scope is well-covered.

Maintenance

ActivityStale
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers