Search Documentation
Search across all documentation pages
read_notes
Read the full decrypted content of multiple notes at once. Returns all notes with their titles, content, tags, and vault names. Reports any IDs that were not found. Use this instead of multiple read_note calls when you need several notes.
Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| noteIds | string[] (UUIDs) | required | Array of note IDs to read (1-20) |
Returns#
An object containing an array of full note objects with decrypted content, and a list of any IDs that were not found.
Example#
json
{
"tool": "read_notes",
"arguments": {
"noteIds": [
"a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"b2c3d4e5-f6a7-8901-bcde-f12345678901"
]
}
}