跳转到主要内容
MCP (Model Context Protocol) is an open protocol by Anthropic that lets AI assistants use external tools. Think of it as “plugins for AI” — but standardized and open source.

How MCP works

AI Assistant (Claude, GPT, etc.)

    ├── MCP Client (built into Claude Desktop, VS Code, Cursor)

    └── MCP Server (your tool)
        ├── list_tools()     → Tell the AI what you can do
        ├── call_tool()      → Execute when the AI requests
        └── get_prompt()     → Provide context/instructions

Available MCP servers

Ace Data Cloud publishes open-source MCP servers for:
ServerInstallUse case
mcp-sunopip install mcp-sunoAI music generation
mcp-serppip install mcp-serpGoogle search
mcp-midjourneyGitHubAI image generation
mcp-lumaGitHubAI video (Dream Machine)
mcp-soraGitHubAI video (OpenAI Sora)
mcp-veoGitHubAI video (Google Veo)
mcp-nanobananaGitHubAI image editing (Gemini)

Quick setup

# Install
pip install mcp-suno mcp-serp

# Set your API key
export ACEDATACLOUD_API_TOKEN="your_key_here"

# Run (stdio mode for Claude Desktop)
mcp-suno

Learn more