From 7b34fc51d925b03982018783bd6cd2d2d0f3f35c Mon Sep 17 00:00:00 2001 From: Aaron Brewbaker Date: Mon, 10 Nov 2025 21:05:34 -0500 Subject: [PATCH] chore(config): Add local MCP server configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add .mcp.json to define project-specific MCP servers: - ardour: Local ardour-mcp server for DAW control - midi-gen: MIDI generation server for music composition This enables AI-assisted development workflows when working on the Ardour codebase, with automatic MCP server loading for testing and integration work. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .mcp.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000000..75dd1e3523 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,21 @@ +{ + "mcpServers": { + "ardour": { + "type": "stdio", + "command": "uv", + "args": [ + "--directory", + "/home/beengud/raibid-labs/ardour-mcp", + "run", + "ardour-mcp" + ] + }, + "midi-gen": { + "type": "stdio", + "command": "node", + "args": [ + "/home/beengud/raibid-labs/ardour-mcp/mcp-servers/midi-mcp-server/build/index.js" + ] + } + } +}