Skip to main content
Glama

suno_overpainting

Add AI-generated vocals to an uploaded instrumental track. Provide an audio ID and optional start/end times to layer a singing voice over existing music.

Instructions

Add AI-generated vocals to uploaded instrumental audio.

Takes your uploaded instrumental track and adds AI-generated vocals
on top of it (overpainting = painting vocals over the music).

Use this when:
- You have an instrumental track and want to add vocals
- You want to give background music a singing voice
- You need to add vocal melody to existing music

Returns:
    Task ID and the audio with vocals added.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelNoModel version to use.chirp-v5-5
audio_idYesID of the uploaded audio to add vocals to. Must be uploaded via suno_upload_audio.
callback_urlNoWebhook callback URL for asynchronous notifications.
overpainting_endNoEnd time in seconds for adding vocals. Must be less than total song duration.
overpainting_startNoStart time in seconds for adding vocals. Default is 0.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.1.18
    • changedInput schema / properties / model / enum
      Previous value: -[
      -  "chirp-v3-0",
      -  "chirp-v3-5",
      -  "chirp-v4",
      -  "chirp-v4-5",
      -  "chirp-v4-5-plus",
      -  "chirp-v5",
      -  "chirp-v5-5"
      -]New value: +[
      +  "chirp-v6",
      +  "chirp-v6-wild",
      +  "chirp-v6-mini",
      +  "chirp-v3-0",
      +  "chirp-v3-5",
      +  "chirp-v4",
      +  "chirp-v4-5",
      +  "chirp-v4-5-plus",
      +  "chirp-v5",
      +  "chirp-v5-5"
      +]
  2. Addedv0.1.5
  3. Removedv0.1.3
  4. Addedv0.1.1

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses that the tool is asynchronous (returns a Task ID) and that it modifies/creates audio with vocals. However, it doesn't mention that the operation is non-destructive to the original upload, whether it consumes credits, or any rate limits. The async nature is disclosed via 'Returns: Task ID', which is useful but minimal.

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 well-structured with a clear summary, use-case bullets, and a returns section. It's slightly longer than necessary—the 'overpainting = painting vocals over the music' parenthetical is helpful but could be trimmed. Overall, every section earns its place and the key info is front-loaded.

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?

The description covers the core purpose, use cases, and return value (Task ID). It doesn't explain polling or callback behavior in detail, but the output schema and parameter descriptions cover the mechanics. For a tool with 5 params and an output schema, this is reasonably complete, though it could mention that the result is delivered asynchronously via task polling.

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 5 parameters. The description adds context for audio_id ('uploaded instrumental track') and explains the overpainting concept, but doesn't add detail beyond the schema for model, callback_url, or the start/end times. Baseline 3 is appropriate since the schema does the heavy lifting.

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's function: adding AI-generated vocals to an uploaded instrumental track. It uses a specific verb ('add'), names the resource ('uploaded instrumental audio'), and explains the metaphor ('overpainting = painting vocals over the music'). This distinguishes it from siblings like suno_underpainting and suno_extract_vocals.

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 use cases ('when you have an instrumental track and want to add vocals', 'want to give background music a singing voice', 'need to add vocal melody to existing music'). It doesn't explicitly state when NOT to use it or name alternative tools, but the use-case list gives clear context for when this tool is appropriate.

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