mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
chore(config): Add local MCP server configuration
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 <noreply@anthropic.com>
This commit is contained in:
parent
47e1f65ff8
commit
7b34fc51d9
1 changed files with 21 additions and 0 deletions
21
.mcp.json
Normal file
21
.mcp.json
Normal file
|
|
@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue