obsidian_open_files
Open multiple files simultaneously in Obsidian vaults using specified paths, enhancing workflow efficiency for AI agents integrated with the MCP server.
Instructions
Open one or more files in the vault in a new leaf.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepaths | Yes | List of file paths to open |
Input Schema (JSON Schema)
{
"properties": {
"filepaths": {
"description": "List of file paths to open",
"items": {
"description": "Path to a file (relative to your vault root)",
"format": "path",
"type": "string"
},
"type": "array"
}
},
"required": [
"filepaths"
],
"type": "object"
}