CLAUDE LABJP
DEADLINE — Today, August 2, is the last day to claim the one-time $100 promotional credit. It expires September 17, so claiming and spending have separate deadlinesGRANT — Applications for the AI for Science grant close today. Researchers working on rare genetic diseases can receive up to $50,000 in Claude credits over six monthsFORK — Claude Code now runs /fork as a background session, and the surrounding /resume and /background flows have been tidied up alongside itGUARD — Safeguards around WebSearch, subagent spawns, and Bash execution have been tightened. Worth checking whether any of your existing automation quietly stops workingCOUNTDOWN — Sonnet 5 stays at $2/$10 per Mtok through August 31. Standard pricing of $3/$15 per Mtok starts September 1, so revisit any estimate that spans the changeFABLE — Fable 5 is included in Max and Team Premium up to 50% of weekly usage limits, while Pro and Team Standard now reach it through metered creditsDEADLINE — Today, August 2, is the last day to claim the one-time $100 promotional credit. It expires September 17, so claiming and spending have separate deadlinesGRANT — Applications for the AI for Science grant close today. Researchers working on rare genetic diseases can receive up to $50,000 in Claude credits over six monthsFORK — Claude Code now runs /fork as a background session, and the surrounding /resume and /background flows have been tidied up alongside itGUARD — Safeguards around WebSearch, subagent spawns, and Bash execution have been tightened. Worth checking whether any of your existing automation quietly stops workingCOUNTDOWN — Sonnet 5 stays at $2/$10 per Mtok through August 31. Standard pricing of $3/$15 per Mtok starts September 1, so revisit any estimate that spans the changeFABLE — Fable 5 is included in Max and Team Premium up to 50% of weekly usage limits, while Pro and Team Standard now reach it through metered credits
Articles/Cowork
Cowork/2026-03-09Intermediate

Suno AI × Claude Guide — Building an AI-Powered Songwriting Workflow

Learn how to combine Suno AI and Claude for an AI music creation workflow. Covers lyrics generation, MCP integration, and prompt design tips.

Suno AI2music generationsongwritingMCP50Cowork33Claude Code207lyricsAI music

What Is Suno AI?

Suno AI is an AI music platform that generates full songs from text prompts. Since its launch in 2023, the platform has grown rapidly, reaching 2 million paid subscribers and $300 million in annual recurring revenue as of February 2026.

The latest version, V5, outputs high-quality 44.1 kHz stereo audio with expressive vocals and natural-sounding pronunciation across multiple languages, including Japanese. Songs up to 4 minutes or longer can now be generated in a single pass.

Why Combine Claude with Suno AI?

Suno's music generation is built on three text inputs: lyrics, style tags, and a title. This makes it a natural fit for Claude's text generation strengths.

Claude excels at generating lyrics that match a given theme and mood. It can also help design Suno's style tags (genre, BPM, instrumentation) to achieve the exact atmosphere you're aiming for. And with MCP server integration, you can call the Suno API directly from Claude Code or Cowork, creating a seamless workflow from lyrics to finished track without leaving your conversation.

Basic Workflow: Write Lyrics in Claude, Create Music in Suno

Step 1: Describe Your Theme to Claude

Start by telling Claude about your song's theme, target audience, and mood.

Write lyrics for a nostalgic summer pop song.
The chorus should use short, catchy phrases that are easy to sing along with.
Structure: Verse 1 → Chorus → Verse 2 → Chorus → Bridge → Final Chorus

Claude understands song structure and will output well-organized lyrics with proper sections.

Step 2: Format for Suno

Suno's Custom Mode accepts lyrics with section tags. Ask Claude to format the output:

Format these lyrics for Suno AI's Custom Mode.
Add section tags like [Verse], [Chorus], and [Bridge].

Example output:

[Verse 1]
Fading sunlight on the shore, fireworks echoing far
Footprints in the sand, traces of who we are

[Chorus]
One more time, just one more time
Take me back to that summer night

[Verse 2]
Wind chimes ringing soft and low, memories start to sway
The sweetness on my tongue from a long-gone August day

[Chorus]
One more time, just one more time
Take me back to that summer night

[Bridge]
I always knew that time won't wait
But the smiles in photographs still feel too bright

[Chorus]
One more time, just one more time
Take me back to that summer night

Step 3: Design Style Tags

Suno's style tags control the genre and feel of the generated music. Ask Claude for recommendations:

Suggest Suno AI style tags for these lyrics.
Genre: Pop. Tempo: mid-tempo. Mood: bittersweet and nostalgic.

Claude's suggestion:

Pop, Nostalgic, Mid-tempo, Acoustic Guitar, Female Vocal, Emotional, Summer

Step 4: Generate the Song in Suno

Open Suno's Custom Mode and enter:

  1. Lyrics: The formatted lyrics from Claude (with section tags)
  2. Style of Music: The style tags Claude suggested
  3. Title: Your song title

Click "Create" and two variations will be generated in about 30 seconds to one minute.

Advanced Techniques

Save Your Style in Claude Projects

Claude.ai's Projects feature lets you store your preferred genre and style guidelines as "project knowledge." For example:

## Songwriting Style Guide
- Genre: City Pop, Future Funk
- BPM: 110-130
- Instruments: Synth, Slap Bass, Electric Piano
- Vocals: Male, slightly high-pitched
- Lyric themes: City nights, driving, neon lights
- Suno style tags: City Pop, Funky, Synth, Groovy, Male Vocal

Once saved, Claude will consistently generate lyrics and tags matching your style without requiring detailed instructions each time.

Generate Multiple Variations

To explore different directions from the same theme, ask Claude:

Rewrite these lyrics in 3 styles:
1. Upbeat pop (bouncy rhythm for the chorus)
2. Ballad (emphasize the emotional weight)
3. Rock (powerful, punchy words)
Include Suno style tags for each version.

Claude will output three complete lyric sets with matching style tags, so you can generate all three in Suno and compare.

Combine with Suno's Extend Feature

Suno's Extend feature lets you continue a generated song from where it ends. If you need additional lyrics for the extension, ask Claude:

Write a continuation (Verse 3 and Final Chorus) for these lyrics.
Maintain the same tone and theme as the original.
[Paste existing lyrics here]

MCP Server Integration

Overview

The Model Context Protocol (MCP) lets you call the Suno API directly from Claude Code or Cowork, enabling music generation within your conversation flow.

Several community-built Suno MCP servers are available:

  • suno-mcp (GitHub: sandraschi/suno-mcp) — Python-based MCP server
  • suno-mcp (GitHub: CodeKeanu/suno-mcp) — MCP server for Claude Code
  • AceDataCloud MCP Suno — Integrated server via AceDataCloud API

Setup Example (Claude Code)

Add the following to your project's .mcp.json file:

{
  "mcpServers": {
    "suno": {
      "command": "npx",
      "args": ["-y", "suno-mcp-server"],
      "env": {
        "SUNO_API_KEY": "your-api-key-here"
      }
    }
  }
}

Note that Suno does not offer an official public API, so you'll need to obtain an API key from a third-party provider such as sunoapi.org.

Generating Music via MCP

Once configured, you can create music using natural language directly in Claude Code:

Create a city pop song about driving at night.
Lyrics in Japanese, male vocals, BPM around 120.

Claude will automatically call the Suno API through the MCP server and return the generated track URL in your chat, ready for playback.

Prompt Design Tips

Style Tags by Genre

Here are common style tag combinations to reference when working with Claude:

J-Pop / City Pop: J-Pop, City Pop, Synth, Groovy, Catchy, Japanese

Rock / Alternative: Rock, Alternative, Electric Guitar, Distortion, Energetic, Drums

Electronic / EDM: Electronic, EDM, Synth, Bass Drop, High Energy, Dance

Acoustic / Ballad: Acoustic, Ballad, Piano, Emotional, Slow, Heartfelt

Lo-fi / Chill: Lo-fi, Chill, Hip Hop Beat, Mellow, Relaxing, Ambient

Lyrics Prompt Template

Use this template with Claude for efficient lyrics generation:

Write song lyrics with the following specifications:

Theme: [your theme]
Genre: [genre]
Mood: [upbeat / bittersweet / powerful / calm]
Structure: [Verse-Chorus-Verse-Chorus-Bridge-Chorus]
Language: [English / Japanese / bilingual]
Special instructions: [catchy hook in chorus, rhyming scheme, etc.]

Output format:
- Include Suno section tags
- Include suggested style tags

Pricing and Considerations

Suno AI Plans (as of March 2026)

Basic Plan (Free) provides 50 credits per day. Commercial use of generated songs is not permitted.

Pro Plan ($10/month) provides 2,500 credits per month with commercial use rights.

Premier Plan ($30/month) provides 10,000 credits per month with full access to Suno Studio, the AI-native digital audio workstation.

Copyright Considerations

Following Suno's partnership with Warner Music Group (WMG) in November 2025, the platform's copyright policies have been formalized. Songs created on paid plans can be monetized through streaming and download sales.

However, there is always a possibility that AI-generated music may resemble existing songs. When using generated tracks commercially, review them carefully for any similarities to existing works.

Looking back

Combining Suno AI with Claude creates an efficient workflow from ideation to lyrics to finished tracks.

The recommended starting point is simple: use Claude to generate lyrics and design style tags, then paste them into Suno's Custom Mode to generate songs. For a more automated approach, set up an MCP server to call Suno directly from Claude Code or Cowork.

Even without any music production experience, you can create professional-quality songs by simply describing your vision to Claude. Start with Suno's free plan and experiment.

Share

Thank You for Reading

Claude Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

If you found this article helpful, a small tip ($1.50) would mean a lot to us. Your support helps keep this site ad-free and covers server and hosting costs.

Related Articles

Cowork2026-07-11
Make Your Nightly MCP Connectors' Health Visible — A Lightweight Ledger for Solo Operators
You don't need Enterprise connector observability to see your MCP connectors' error rate and latency. Append one line per tool call, roll it up weekly, and let regressions ring a bell. A working health ledger for anyone running scheduled tasks solo.
Cowork2026-04-02
Cowork Multi-MCP Orchestration in Practice: A Complete Blueprint for Automating Figma, GitHub, and Stripe
Learn how to design and implement cross-service orchestration in Cowork connecting Figma, GitHub, and Stripe. A complete blueprint for indie developers to build production-ready automation systems from scratch.
Cowork2026-03-31
Claude Cowork × MCP Server Integration Guide — Building a Cross-Service Automation Ecosystem with Slack, Notion & GitHub
Learn how to integrate MCP servers with Claude Cowork to build automated workflows spanning Slack, Notion, and GitHub. Covers connector setup, design patterns, and production best practices.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →