get_note
Retrieve detailed data for a specific note by its unique ID within the Joplin MCP Server, enabling AI assistants to access and manage note information programmatically.
Instructions
Get a specific note by ID.
Args:
note_id: ID of the note to retrieve
Returns:
Dictionary containing the note data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"note_id": {
"title": "Note Id",
"type": "string"
}
},
"required": [
"note_id"
],
"title": "get_noteArguments",
"type": "object"
}