跳转到主要内容
Set up MCP (Model Context Protocol) servers to give Claude Desktop access to AI music, video, image, and search tools.

What are MCP servers?

MCP servers let AI assistants like Claude call external tools. With Ace Data Cloud’s MCP servers, Claude can:
  • Generate music with Suno
  • Create videos with Sora, Veo, Luma
  • Generate images with Midjourney, Nano Banana
  • Search the web with Google SERP

Setup

1. Install MCP servers

pip install mcp-suno mcp-serp mcp-midjourney mcp-luma mcp-sora mcp-veo

2. Get your API key

Sign up at platform.acedata.cloud and get your Bearer token.

3. Configure Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
  "mcpServers": {
    "suno": {
      "command": "mcp-suno",
      "env": {
        "ACEDATACLOUD_API_TOKEN": "YOUR_API_KEY"
      }
    },
    "search": {
      "command": "mcp-serp",
      "env": {
        "ACEDATACLOUD_API_TOKEN": "YOUR_API_KEY"
      }
    },
    "midjourney": {
      "command": "mcp-midjourney",
      "env": {
        "ACEDATACLOUD_API_TOKEN": "YOUR_API_KEY"
      }
    },
    "sora": {
      "command": "mcp-sora",
      "env": {
        "ACEDATACLOUD_API_TOKEN": "YOUR_API_KEY"
      }
    }
  }
}

4. Restart Claude Desktop

After saving the config, restart Claude Desktop. You’ll see the tools icon (🔨) in the chat input.

Example prompts

  • “Generate a jazz song about rainy days”
  • “Create a video of a cat playing piano”
  • “Search for the latest AI news”
  • “Generate an image of a futuristic city”

Available MCP servers

ServerPyPIFeatures
mcp-sunoPyPIMusic generation, lyrics, covers, stems
mcp-serpPyPIGoogle search (web, images, news)
mcp-midjourneyGitHubImage generation, upscale, variations
mcp-lumaGitHubVideo generation (Dream Machine)
mcp-soraGitHubVideo generation (OpenAI Sora)
mcp-veoGitHubVideo generation (Google Veo)

Next steps