read_note
Retrieve and read the content of specific notes within an Obsidian vault using the MCP server. Input a note path to access its entire text for integration or analysis.
Instructions
Read the content of a note in the Obsidian vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the note within the vault |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the note within the vault",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}