remove_multiple_files
Delete multiple files from an Obsidian vault stored in iCloud Drive by specifying their paths, enabling efficient file management within the Model Context Protocol framework.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paths | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"paths": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
}