update_file_metadata
Modify AI metadata within files on the MCP Memory Server to ensure accurate tracking, updated project context, and controlled file changes during coding sessions.
Instructions
Update AI metadata in a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the file | |
updates | Yes | Metadata updates to apply |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Path to the file",
"type": "string"
},
"updates": {
"description": "Metadata updates to apply",
"type": "object"
}
},
"required": [
"filePath",
"updates"
],
"type": "object"
}