FileScopeMCP

by admica
Verified

set_file_importance

Manually set the importance ranking of a specific file

Input Schema

NameRequiredDescriptionDefault
filepathYesThe path to the file to update
importanceYesThe importance value to set (0-10)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "filepath": { "description": "The path to the file to update", "type": "string" }, "importance": { "description": "The importance value to set (0-10)", "maximum": 10, "minimum": 0, "type": "number" } }, "required": [ "filepath", "importance" ], "type": "object" }
ID: mcrren8xsa