PampaPilot MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| discover_song_mediaA | Encuentra stems, MIDI, referencia y pares sugeridos sin abrir REAPER. |
| analyze_midiA | Lee notas, tempo y defectos estructurales; no escribe archivos. |
| preview_midi_cleanupA | Compara MIDI/WAV y devuelve el plan completo sin crear ni cambiar archivos. |
| clean_midi_filesB | Conserva originales y escribe variantes auditables solamente en sessions/. |
| preview_song_preparationA | Valida medios y devuelve un plan de sesión sin escribir ni abrir REAPER. |
| prepare_songA | Escribe song-manifest.json bajo sessions/; no ejecuta el plan de REAPER. |
| health_checkA | Comprueba el puente y devuelve REAPER, proyecto activo y versiones. |
| get_project_stateA | Lee pistas y estado básico del proyecto activo, sin modificarlo. |
| get_track_stateA | Lee una pista por GUID y exige que el proyecto activo no haya cambiado. |
| create_trackA | Crea una pista, verifica el nombre y devuelve GUID y transacción reversible. |
| set_track_panA | Ajusta paneo -1..1 y lo verifica; no sobrescribe automatización activa. |
| set_track_volumeA | Ajusta volumen -60..+12 dB y verifica la lectura posterior. |
| set_track_muteB | Cambia el mute de una pista y verifica la lectura posterior. |
| apply_track_mix_batchB | Aplica volumen, paneo y mute como una sola transacción verificable. |
| add_stock_fxB | Agrega ReaComp o ReaEQ y verifica identidad, GUID y estado. |
| configure_reacompB | Configura un ReaComp identificado por GUID y verifica los valores mostrados. |
| configure_reaeq_bandA | Configura una banda existente por tipo e índice y devuelve su estado. |
| import_audioB | Importa un WAV permitido, verifica pista/ítem/toma y devuelve sus GUID. |
| import_audio_batchA | Importa un lote de WAV como una sola transacción con verificación. |
| set_project_tempoA | Ajusta BPM y verifica que posiciones, duraciones y playrate no cambien. |
| save_project_asB | Guarda como RPP nuevo dentro de las raíces de sesiones permitidas. |
| undo_transactionA | Deshace sólo la última transacción propia si el historial sigue intacto. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 22 tools
Most tools are clearly distinct, targeting specific properties, effects, or workflow stages. The batch mix tool overlaps slightly with individual set_track_* tools, and the multiple preview tools require attention, but descriptions and names adequately separate them.
The majority of tool names follow a clear verb_noun pattern in snake_case (set_track_pan, create_track, import_audio). The only minor deviation is health_check, which is a common idiom, but the overall pattern remains predictable.
With 22 tools, the server is on the heavier side but appropriate for the broad scope of REAPER integration, covering mixing, effects, MIDI processing, project state, and preparation workflows without being excessive or redundant.
The tool set provides good coverage of the domain: track operations, effects, MIDI analysis/cleanup, audio import, project state/tempo/save, and undo. Some potentially expected operations like track deletion are missing, but the core workflow is well-supported.