read_file
Retrieve the content of a specific file from an Obsidian vault using its path, enabling direct access to notes and data through a structured API.
Instructions
Read content of a specific file from the vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the file |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the file",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}