load_midi_file
Load and parse a Standard MIDI File (SMF) from a specified file path to enable analysis of musical data, tracks, and events.
Instructions
Load and parse a MIDI SMF file from the specified path
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| filePath | Yes | Path to the MIDI file to load | 
Input Schema (JSON Schema)
{
  "properties": {
    "filePath": {
      "description": "Path to the MIDI file to load",
      "type": "string"
    }
  },
  "required": [
    "filePath"
  ],
  "type": "object"
}