MIDI File MCP
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_midi_infoC | Get midi file info |
| set_tempoC | Set tempo for midi file |
| get_tracks_infoC | Get tracks info from midi file |
| get_track_info_by_indexB | Get track info from midi file by track index. name, instrument, channel, endOfTrackTicks, duration, durationTicks, noteCount |
| get_notes_by_indexB | Get notes from midi file by track index |
| get_pitchbends_by_indexB | Get pitchbends from midi file by track index |
| get_controlchanges_by_indexC | Get controlchanges from midi file by track index |
| add_notes_by_indexB | Add notes to midi file by track index |
| add_controlchanges_by_indexC | Add controlchanges to midi file by track index |
| add_pitchbends_by_indexC | Add pitchbends to midi file by track index |
| add_trackB | Add a new track to midi file and return the new track info |
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 11 tools
Each tool targets a distinct resource (notes, controlchanges, pitchbends, tracks, tempo, info) with clear operations (get, add, set), making them easily distinguishable.
All tool names follow a consistent verb_noun pattern with snake_case, e.g., add_notes_by_index, get_midi_info, set_tempo. No mixed conventions.
11 tools is well-scoped for MIDI file manipulation, covering essential read and write operations without being excessive or thin.
The tool set covers adding and getting notes, control changes, and pitch bends, but lacks update and delete operations for those events, as well as removing tracks or clearing data.