MCP Documentation Service

by alekspetrov
Verified

update_navigation_order

Update the navigation order of a document by modifying its frontmatter.

Input Schema

NameRequiredDescriptionDefault
orderYes
pathYes

Input Schema (JSON Schema)

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