Skip to content

Get Mode

Tool name: get-mode

Fetch a single mode from the music knowledge graph by its unique slug.

HintValue
readOnlyHint
idempotentHint
destructiveHint
openWorldHint
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"slug": {
"type": "string",
"minLength": 1,
"description": "Unique slug of the mode (e.g. \"ionian\", \"dorian\", \"lydian\")."
}
},
"required": [
"slug"
],
"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": {
"slug": {
"type": "string"
},
"name": {
"type": "string"
},
"parentScale": {
"type": "string"
},
"intervals": {
"type": "array",
"items": {
"type": "string"
}
},
"characteristicNotes": {
"type": "array",
"items": {
"type": "string"
}
},
"mood": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"commonGenres": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"slug",
"name",
"parentScale",
"intervals",
"characteristicNotes",
"mood",
"commonGenres"
],
"additionalProperties": false
}