Generate Music Directly in Claude with Suno! MCP One-Click Integration Guide

Have you ever thought: while chatting with Claude, you could directly have it generate a song for you? No need to open any website, no coding required, just one sentence — "Help me write a song about summer" — and Claude will call the Suno API, delivering a complete song, lyrics, and cover art within minutes.

This is not a fantasy; this is the magic of MCP (Model Context Protocol). Below is a step-by-step guide on how to integrate the Suno MCP Server into Claude.

What is MCP?

MCP (Model Context Protocol) is an open standard launched by Anthropic that allows AI models to call external tools via standardized interfaces. You can think of it as giving Claude "plugin" capabilities.

Through the Suno MCP Server provided by AceData Cloud, Claude can directly:

  • 🎵 Generate complete songs from text descriptions
  • ✍️ Customize lyrics, titles, and styles
  • 🔄 Continue songs, cover, and remix
  • 📝 Generate lyrics
  • 🎤 Manage voice styles (Personas)
  • 📦 Obtain MP4/WAV/MIDI and other formats

Method 1: Use on Claude.ai Web Version (Easiest)

Claude.ai supports OAuth direct connection, no API Token required:

  1. Open Claude.ai, go to Settings → Integrations → Add More
  2. Enter the server URL: https://suno.mcp.acedata.cloud/mcp
  3. Complete OAuth authorization login
  4. Return to chat and start using it directly!

Try saying to Claude:

"Help me generate a cheerful summer beach style song"

Claude will call the generate_music tool and return a complete song link with cover art in a few minutes.

Method 2: Use in Claude Desktop

Use Hosted Service (Recommended, No Installation Needed)

Edit the Claude Desktop configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "suno": {
      "type": "streamable-http",
      "url": "https://suno.mcp.acedata.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

Use Local Running

{
  "mcpServers": {
    "suno": {
      "command": "uvx",
      "args": ["mcp-suno"],
      "env": {
        "ACEDATACLOUD_API_TOKEN": "YOUR_API_TOKEN"
      }
    }
  }
}

After saving, restart Claude Desktop, and you will see Suno tools available in your conversations.

Method 3: Use in Claude Code (Command Line)

claude mcp add suno --transport http https://suno.mcp.acedata.cloud/mcp \
  -h "Authorization: Bearer YOUR_API_TOKEN"

After this, you can directly ask Claude Code to generate music.

Practical Demonstrations

Demo 1: Inspiration Mode — Generate a Song from One Sentence

Say to Claude:

"Generate a romantic ballad about starry nights"

Claude will automatically:

  1. Call the generate_music tool
  2. Pass the prompt
  3. Poll the task status until completion
  4. Return the song title, lyrics, audio link, and cover art

Demo 2: Custom Lyrics Creation

"Help me create a rock-style song with the following lyrics: [Verse] Marching through the storm Lightning tears the sky [Chorus] We are the tempest Unstoppable force"

Claude calls the generate_custom_music tool with lyrics, title, and style tags to generate a precisely matched song.

Demo 3: Song Continuation

"Continue this song with a bridge starting from the 2-minute mark"

Claude calls the extend_music tool to extend the song from the specified timestamp, maintaining style consistency.

Demo 4: Vocal/Accompaniment Extraction

"Help me separate the vocals from this song"

Claude calls the extract_vocals tool, returning audio with isolated vocals and accompaniment.

Supported Models

Model Version Max Duration Features
chirp-v5 V5 8 minutes Latest, highest quality
chirp-v4-5-plus V4.5+ 8 minutes Enhanced quality
chirp-v4-5 V4.5 4 minutes Gender control supported
chirp-v4 V4 150 seconds Stable and reliable

Get API Token

  1. Register at AceData Cloud Platform
  2. Visit Suno API Documentation
  3. Click "Acquire" to get a Token (new users have free quota)

Summary

MCP turns Claude into your personal music production assistant. Whether for short video BGM, brand advertising songs, or personal creation, just type your idea and Claude + Suno will handle the rest.

Try it now: https://platform.acedata.cloud

Related Links: