read_notebook
Extract and retrieve contents of a specific notebook by providing its unique ID, enabling efficient data access and management in Joplin MCP Server.
Instructions
Read the contents of a specific notebook
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notebook_id | Yes | ID of the notebook to read |
Input Schema (JSON Schema)
{
"properties": {
"notebook_id": {
"description": "ID of the notebook to read",
"type": "string"
}
},
"required": [
"notebook_id"
],
"type": "object"
}