MCP Documentation Service

by alekspetrov
Verified

rename_document

Rename a document while preserving its location and content. Optionally updates references to the document in other files.

Input Schema

NameRequiredDescriptionDefault
newNameYes
pathYes
updateReferencesNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "newName": { "type": "string" }, "path": { "type": "string" }, "updateReferences": { "default": true, "type": "boolean" } }, "required": [ "path", "newName" ], "type": "object" }