MCP Documentation Service

by alekspetrov
Verified

create_documentation_section

Create a new navigation section with an index.md file.

Input Schema

NameRequiredDescriptionDefault
orderNo
pathYes
titleYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "order": { "type": "number" }, "path": { "type": "string" }, "title": { "type": "string" } }, "required": [ "path", "title" ], "type": "object" }