rename_document
Rename a document within the MCP Documentation Service without altering its content or location. Optionally updates references to the document in related files for consistency.
Instructions
Rename a document while preserving its location and content. Optionally updates references to the document in other files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
newName | Yes | ||
path | Yes | ||
updateReferences | No |
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"
}