For the complete documentation index, see llms.txt. This page is also available as Markdown.

ACE Studio MCP Server

Connect ACE Studio to AI clients through its experimental MCP server.

ACE Studio MCP Server

Experimental Status

The ACE Studio MCP server offers a rich toolkit enabling AI agents to autonomously navigate and execute creative edits. By giving AI agents comprehensive insight into every detail of your project, it empowers them to assist you in creating and editing songs with greater speed and creative freedom.

The Model Context Protocol (MCP) is an open standard that enables AI assistants to seamlessly connect with external applications and data sources. The ACE Studio MCP server implements this protocol to give AI agents direct access to your creative workspace.

Quick Start

Launch the ACE Studio MCP Server

  1. Open ACE Studio.

  2. Go to Preferences → General → MCP Server.

  3. Choose a transport mode: HTTP or STDIO.

The transport mode you select here determines how your AI client connects to ACE Studio. See the sections below for details and client-specific configuration.

Choose the appropriate configuration based on the transport mode you selected and your AI client.

Streamable HTTP Mode

In HTTP mode, ACE Studio runs a local MCP server at a fixed address. Your AI client connects to it over the network.

Server Address: http://localhost:21572/mcp

Technical Note: The ACE Studio MCP Server uses the Streamable HTTP transport protocol. Keep this address for the next configuration step.

Claude Desktop

⚠ Setting up the ACE Studio MCP Server in Claude Desktop requires editing a JSON configuration file. If you're not comfortable with technical configuration, we recommend trying more user-friendly clients.

Configuration Steps:

  1. Install Node.js, if needed.

  2. Locate the Claude Desktop configuration file.

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

    • Windows: %APPDATA%\Claude\claude_desktop_config.json

  3. Edit the configuration file and add the following:

  1. Save the file and restart Claude Desktop.

Verify Connection: Type in Claude:

If Claude returns project details, the connection is successful.

Cursor

You can directly add MCP server to Cursor by clicking here.

Or manually set it up:

  1. Open Cursor settings.

  2. Find the Tools & MCP section.

  3. Click New MCP Server.

  4. Fill in the following JSON:

  1. Click Save.

  2. Restart Cursor.

Verify Connection: Type in Cursor Chat:

VS Code via native MCP support

You can directly add MCP server to VS Code by clicking here.

Or manually set it up:

  1. Create or edit .vscode/mcp.json in your workspace.

  2. Add the following configuration:

VS Code via Cline

  1. Install the Cline extension.

  2. Open extension settings.

  3. Find the MCP Servers configuration section.

  4. Add a new server:

Other Clients

For most clients, use these configuration settings:

  • Transport type: Streamable HTTP. Some clients may call this Remote.

  • Server URL: http://localhost:21572/mcp

Or import MCP server with the following JSON:

STDIO Mode

In STDIO mode, your AI client launches and communicates with the ACE Studio MCP server directly through standard input and output. This is simpler to set up. You do not need to start a server manually or use a network address.

Getting the Command:

  1. In ACE Studio, go to Preferences → General → MCP Server.

  2. Set the mode to STDIO.

  3. Click Copy Command to copy the server command to your clipboard.

The copied command will look like this:

Use this command in the configuration steps below.

The command path varies by OS. Use the exact command copied from ACE Studio in every client configuration below.

Claude Desktop

STDIO is the native transport for Claude Desktop. You do not need extra tools like mcp-remote.

  1. Locate the Claude Desktop configuration file.

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

    • Windows: %APPDATA%\Claude\claude_desktop_config.json

  2. Edit the configuration file and add the following:

  1. Save the file and restart Claude Desktop.

Verify Connection: Type in Claude:

If Claude returns project details, the connection is successful.

Cursor

  1. Open Cursor settings.

  2. Find the Tools & MCP section.

  3. Click New MCP Server.

  4. Fill in the following JSON:

  1. Click Save.

  2. Restart Cursor.

Verify Connection: Type in Cursor Chat:

VS Code via native MCP support

  1. Create or edit .vscode/mcp.json in your workspace.

  2. Add the following configuration:

VS Code via Cline

  1. Install the Cline extension.

  2. Open extension settings.

  3. Find the MCP Servers configuration section.

  4. Add a new server:

Other Clients

For most clients, use these configuration settings:

  • Transport type: STDIO

  • Command: /Applications/ACE Studio.app/Contents/Helpers/ace_mcp_server

  • Arguments: --stdio

Or import MCP server with the following JSON:

Usage Examples

Once connected, you can try the following prompts to collaborate with your AI assistant:

Create a New Project

Generate Lyrics and Melody

Edit MIDI

Last updated