get_note
Retrieve saved notes by exact case-sensitive name to access stored data, reference documents, or session-attached content. Fetches complete note content; provide session_id for session-specific notes.
Instructions
Retrieve a saved note by its exact name.
Fetches the full content of a note previously created with save_note.
The name must match exactly (case-sensitive).
Use this when:
Retrieving stored data:
get_note("api-endpoints")Checking session-attached notes:
get_note("findings", session_id="s001")Loading a reference document you saved earlier
If you're not sure of the note name, use recall to search by content
or check session context with resume_session.
Args: name: The exact note name used when saving (case-sensitive). session_id: Required if the note was saved with a session_id. Omit for notes saved without a session.
Returns: The full note content. Returns an error if no note exists with that name, or if session_id is required but not provided.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| session_id | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |