update_navigation_order
Modify the navigation order of a document by updating its frontmatter with a specified path and order value. Enhances document organization within the MCP Documentation Service.
Instructions
Update the navigation order of a document by modifying its frontmatter.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order | Yes | ||
path | Yes |
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"
}