Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@midi-mcplist my MIDI ports and send a middle C note to channel 1"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
midi-mcp
MCP server that lets Claude control electronic music instruments via MIDI. Exposes tools for sending MIDI messages (notes, CC, program changes, pitch bend, sysex) to hardware synths and drum machines connected via USB or DIN MIDI.
Setup
Requires uv.
cd midi-mcp
uv syncUsage
Add to Claude Code
claude mcp add midi-mcp -- uv --directory /path/to/midi-mcp run midi-mcpOr add manually to your MCP config:
{
"mcpServers": {
"midi-mcp": {
"command": "uv",
"args": ["--directory", "/path/to/midi-mcp", "run", "midi-mcp"]
}
}
}Run standalone
uv run midi-mcpTools
Tool | Description |
| List available MIDI output ports |
| Open a specific MIDI output port by name |
| Close the currently open port |
| Return current port name and connection state |
| Send Note On (channel, note, velocity) |
| Send Note Off (channel, note, velocity) |
| Send Control Change (channel, control, value) |
| Send Program Change (channel, program) |
| Send Pitch Bend (channel, value) |
| Send SysEx message (list of data bytes) |
Dependencies
mcp[cli] - MCP Python SDK with FastMCP
mido - MIDI message library
python-rtmidi - Real-time MIDI I/O backend