Skip to main content
Glama

suno_upload_extend

Extend your uploaded audio by adding AI-generated sections at a chosen timestamp. Provide lyrics and style to create new content for your own music.

Instructions

Extend an uploaded audio (your own music) with new AI-generated content.

Similar to suno_extend_music but works with audio you uploaded via
suno_upload_audio. Allows you to add new sections to your own music.

Use this when:
- You uploaded your own music and want to extend it
- You want to add AI-generated sections to your existing recordings

Returns:
    Task ID and the extended audio information.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
lyricYesLyrics for the extension section.
modelNoModel version to use.chirp-v5-5
styleNoMusic style for the extension.
audio_idYesID of the uploaded audio to extend. Must be an audio uploaded via suno_upload_audio.
continue_atYesTimestamp in seconds where to start the extension.
callback_urlNoWebhook callback URL for asynchronous notifications.

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. First observedv0.1.0

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It states the operation's effect and that it returns a Task ID, which hints at asynchronous task execution, but it never explicitly says the result must be polled, whether the original upload is preserved, or that callback_url can be used for async notification. These are meaningful gaps for a generation tool.

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: lead purpose, sibling comparison, 'Use this when' bullets, and a Returns section. Minor redundancy ('your own music' and 'add new sections' appear more than once) keeps it from a 5.

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 6-parameter generation tool with no annotations, it covers purpose, when-to-use, the upload prerequisite, and return shape. It is missing an explicit async workflow/polling hint, but the output schema and sibling suno_get_task make the task ID route discoverable. Overall sufficient but not exhaustive.

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 reinforces that audio_id must come from suno_upload_audio and that the operation adds sections, but it does not add detail about lyric, continue_at, model, style, or callback_url beyond what the schema already provides.

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

Purpose5/5

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

The description opens with a specific verb+resource: 'Extend an uploaded audio... with new AI-generated content.' It explicitly names the sibling it is not ('Similar to suno_extend_music but works with audio you uploaded via suno_upload_audio'), so an agent can distinguish it from the many generation tools.

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

Usage Guidelines5/5

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

It provides a 'Use this when' list with two concrete conditions, and contrasts itself with suno_extend_music. The exclusion ('but works with audio you uploaded') tells the agent not to use it for non-uploaded/generated audio.

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