gaudio-developers-mcp
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GAUDIO_API_KEY | Yes | Your Gaudio Lab API key for authentication |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| gaudio_list_modelsA | List available Gaudio AI models. Filter by category: 'stem' (instrument separation), 'dme' (dialogue/music/effects separation), 'text_sync' (lyrics sync). |
| gaudio_upload_fileA | Upload a local audio/video/text file to Gaudio servers. Handles multipart upload automatically (create → chunk upload → complete). The returned uploadId is valid for 72 hours and can be reused across multiple jobs. Supported formats: WAV, FLAC, MP3, M4A, MOV, MP4, TXT. |
| gaudio_create_jobA | Create a processing job with an uploaded file. For Stem Separation models (gsep_music_hq_v1, gsep_music_shq_v1, gsep_speech_hq_v1), the 'type' parameter is required (e.g. 'vocal', 'vocal,drum'). For DME models, no type is needed. For Text Sync (gts_lyrics_line_v1), use gaudio_sync_lyrics instead. |
| gaudio_get_jobA | Check job status and get results. Status: 'waiting' (queued), 'running' (processing), 'success' (done, downloadUrl included), 'failed' (error). Download URLs expire after 48 hours. |
| gaudio_separate_audioA | All-in-one audio separation: upload file (or reuse uploadId) → create job → poll until done → return download URLs. For Stem Separation, provide 'type' (e.g. 'vocal', 'vocal,drum'). For DME Separation, no type needed. Supports WAV, FLAC, MP3, M4A, MOV, MP4. |
| gaudio_sync_lyricsA | All-in-one lyrics sync: upload audio + text files → create gts_lyrics_line_v1 job → poll → return CSV (timestamp, lyric_text, confidence_score) + JSON report URLs. Text file requirements: .txt format, UTF-8, minimum 2 lines, max 60 characters per line. Audio limit: 1GB / 10 minutes. |
| gaudio_get_key_infoA | Get API key information: description, creation date, status, permitted models, project name, and remaining credits (free + paid). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool has a distinct purpose: listing models, uploading files, creating jobs, checking job status, and two all-in-one wrappers plus API key info. The manual and wrapper tools are clearly differentiated by their descriptions, with the all-in-one tools explicitly labeled as such, leaving no ambiguity.
All tool names follow a consistent 'gaudio_' prefix with a verb_noun pattern in snake_case (list_models, upload_file, create_job, get_job, separate_audio, sync_lyrics, get_key_info). This is highly predictable and uniform.
Seven tools is well-scoped for a focused AI processing API. It covers the essential operations without unnecessary bloat, and each tool serves a clear function in the workflow, from listing models to managing jobs and retrieving results.
The tool set provides complete coverage for the domain: model discovery, file upload, job creation/status tracking, and two end-to-end workflows (separation and lyrics sync) plus account/key info. There are no obvious missing operations that would cause agent failures.