用于 Synthesizer V AI 声乐工作室的MCP服务器,允许大型语言模型创建或编辑声乐轨道,例如向旋律添加歌词。
git clone https://github.com/ocadaruma/mcp-svstudio.git
~/Library/Application Support/Dreamtonics/Synthesizer V Studio 2/scripts)
sv-scripts/StartMCPServerRequestHandler.luasv-scripts/StopMCPServerRequestHandler.luaStartServerRequestHandler
⚠️ 请确保一次只运行一个 MCP 服务器。
在您的客户端 MCP 服务器配置中添加以下配置。(例如,在MacOS Claude Desktop上,默认路径为 ~/Library/Application Support/Claude/claude_desktop_config.json)
{
"mcpServers": {
"SynthesizerVStudioMCP": {
"command": "/path/to/node",
"args": [
"/path/to/mcp-svstudio/dist/index.js"
]
}
}
}
安装依赖项:
npm install
构建服务器:
npm run build
开发时自动重建:
npm run watch