update_metadata
Modify metadata for documentation files in a project, including title, category, and tags, to enhance organization and searchability within the mcp-rtfm knowledge base.
Instructions
Update metadata for a documentation file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docFile | Yes | Name of the documentation file | |
metadata | Yes | Metadata to update | |
projectPath | Yes | Path to the project root directory |
Input Schema (JSON Schema)
{
"properties": {
"docFile": {
"description": "Name of the documentation file",
"type": "string"
},
"metadata": {
"description": "Metadata to update",
"properties": {
"category": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"projectPath": {
"description": "Path to the project root directory",
"type": "string"
}
},
"required": [
"projectPath",
"docFile",
"metadata"
],
"type": "object"
}