get_midi_summary
Analyze MIDI files to extract comprehensive summary information including track details, event data, and file structure for music analysis and processing.
Instructions
Get comprehensive summary information about a MIDI file
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| fileId | No | ID of the loaded MIDI file | |
| filePath | No | Path to the MIDI file (if not using fileId) | 
Input Schema (JSON Schema)
{
  "properties": {
    "fileId": {
      "description": "ID of the loaded MIDI file",
      "type": "string"
    },
    "filePath": {
      "description": "Path to the MIDI file (if not using fileId)",
      "type": "string"
    }
  },
  "type": "object"
}