-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
65 lines (65 loc) · 2.12 KB
/
Copy pathserver.json
File metadata and controls
65 lines (65 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
"name": "io.github.guyko/midimcp",
"description": "A local MCP server that manages MIDI guitar pedal execution. Provides persistent knowledge of pedal parameters and executes MIDI CC commands generated by AI assistants. Supports Meris LVX Delay, Mercury X Reverb, Enzo X Synthesizer, and Neural DSP Quad Cortex with complete preset creation capabilities.",
"version": "1.0.0",
"keywords": ["midi", "guitar", "pedals", "music", "automation", "preset", "meris", "neural-dsp"],
"license": "Apache-2.0",
"author": {
"name": "Guy Kobrinsky",
"email": "guy.kobrinsky@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/guyko/midimcp.git"
},
"packages": [
{
"registryType": "mcpb",
"identifier": "https://github.com/guyko/midimcp/releases/download/v1.0.0/midimcp-1.0.0.mcpb",
"version": "1.0.0",
"fileSha256": "placeholder-hash-will-be-calculated-when-mcpb-is-created",
"transport": {
"type": "stdio"
}
}
],
"tools": [
{
"name": "add_pedal",
"description": "Add new guitar pedals with MIDI CC mappings"
},
{
"name": "get_pedal",
"description": "Retrieve specific pedal information and CC mappings"
},
{
"name": "list_pedals",
"description": "List all available pedals and their capabilities"
},
{
"name": "execute_midi_command",
"description": "Execute a single MIDI CC command on a pedal"
},
{
"name": "execute_midi_commands",
"description": "Execute multiple MIDI CC commands in sequence to create presets"
},
{
"name": "execute_program_change",
"description": "Switch pedal presets via MIDI program change"
},
{
"name": "send_sysex",
"description": "Send sysex data directly to a MIDI device for preset uploads"
},
{
"name": "get_midi_status",
"description": "Get MIDI executor connection status"
},
{
"name": "rescan_midi_devices",
"description": "Re-scan for MIDI devices"
}
]
}