read_note
Retrieve the full content of a specific note by providing its unique ID, enabling quick access to detailed information stored in the Joplin MCP Server.
Instructions
Read the full content of a specific note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note_id | Yes | ID of the note to read |
Input Schema (JSON Schema)
{
"properties": {
"note_id": {
"description": "ID of the note to read",
"type": "string"
}
},
"required": [
"note_id"
],
"type": "object"
}