List sheet series
list_sheet_series
Section titled “list_sheet_series”Use this to inspect the authoritative sheet-series hierarchy and valid assignment paths, optionally for one subject.
Contract metadata
Section titled “Contract metadata”{ "annotations": { "readOnlyHint": true, "destructiveHint": false, "idempotentHint": true, "openWorldHint": false }, "fileParams": [], "requiredPermission": "read", "security": { "type": "oauth2", "scopes": [ "chalksurf:read" ] }}Input schema
Section titled “Input schema”The server advertises this JSON Schema to MCP clients. Runtime authorization and business-rule checks still apply.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "subject": { "enum": [ "math", "physics", "chemistry" ], "type": "string" } }, "type": "object"}Output schema
Section titled “Output schema”{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "series": { "items": { "additionalProperties": false, "properties": { "aliases": { "items": { "type": "string" }, "type": "array" }, "childPaths": { "items": { "type": "string" }, "type": "array" }, "depth": { "maximum": 9007199254740991, "minimum": 0, "type": "integer" }, "descriptions": { "additionalProperties": false, "properties": { "english": { "minLength": 1, "type": "string" }, "hungarian": { "minLength": 1, "type": "string" } }, "type": "object" }, "names": { "additionalProperties": false, "properties": { "english": { "minLength": 1, "type": "string" }, "hungarian": { "minLength": 1, "type": "string" } }, "required": [ "english", "hungarian" ], "type": "object" }, "parentPath": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "path": { "minLength": 1, "type": "string" }, "subjects": { "items": { "enum": [ "math", "physics", "chemistry" ], "type": "string" }, "minItems": 1, "type": "array" } }, "required": [ "path", "names", "parentPath", "depth", "childPaths", "subjects" ], "type": "object" }, "type": "array" } }, "required": [ "series" ], "type": "object"}