Skip to content

List Cadences

Tool name: list-cadences

List all cadences from the music knowledge graph.

HintValue
readOnlyHint
idempotentHint
destructiveHint
openWorldHint
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}

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"
},
"romanPattern": {
"type": "array",
"items": {
"type": "string"
}
},
"description": {
"type": "string"
}
},
"required": [
"slug",
"name",
"romanPattern",
"description"
],
"additionalProperties": false
},
"description": "All cadences, ordered by slug."
}
},
"required": [
"results"
],
"additionalProperties": false
}