MCP-PIF Server

delete

Delete a file or directory

Input Schema

NameRequiredDescriptionDefault
pathYesPath of the file or directory to delete
recursiveNoIf true, recursively delete directories and their contents

Input Schema (JSON Schema)

{ "properties": { "path": { "description": "Path of the file or directory to delete", "type": "string" }, "recursive": { "description": "If true, recursively delete directories and their contents", "type": "boolean" } }, "required": [ "path" ], "type": "object" }