List Voicings
Tool name: list-voicings
List voicings from the music knowledge graph, optionally filtered by chord quality or instrument.
Annotations
Section titled “Annotations”| Hint | Value |
|---|---|
| readOnlyHint | ✓ |
| idempotentHint | ✓ |
| destructiveHint | — |
| openWorldHint | — |
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "chordQuality": { "description": "Exact match on chord quality (e.g. \"triad\", \"seventh\", \"any\").", "type": "string", "minLength": 1 }, "instrument": { "description": "Exact match on instrument (e.g. \"piano\", \"guitar\").", "type": "string", "minLength": 1 } }, "additionalProperties": false}Output
Section titled “Output”Returned as structuredContent. The text rendering is a short human-readable summary.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "results": { "type": "array", "items": { "type": "object", "properties": { "slug": { "type": "string" }, "name": { "type": "string" }, "chordQuality": { "type": "string" }, "notesTemplate": { "type": "array", "items": { "type": "string" } }, "instrument": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "slug", "name", "chordQuality", "notesTemplate", "instrument" ], "additionalProperties": false }, "description": "Matching voicings, ordered by slug." } }, "required": [ "results" ], "additionalProperties": false}