MCP server for Obsidian

obsidian_batch_get_file_contents

Return the contents of multiple files in your vault, concatenated with headers.

Input Schema

NameRequiredDescriptionDefault
filepathsYesList of file paths to read

Input Schema (JSON Schema)

{ "properties": { "filepaths": { "description": "List of file paths to read", "items": { "description": "Path to a file (relative to your vault root)", "format": "path", "type": "string" }, "type": "array" } }, "required": [ "filepaths" ], "type": "object" }