Inkdrop MCP Server

Official

read-note

Retrieve the complete contents of the note by its ID from the database.

Input Schema

NameRequiredDescriptionDefault
noteIdYesID of the note to retrieve. It can be found as `_id` in the note docs

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "noteId": { "description": "ID of the note to retrieve. It can be found as `_id` in the note docs", "type": "string" } }, "required": [ "noteId" ], "type": "object" }