Inkdrop MCP Server

Official

create-note

Create a new note in the database

Input Schema

NameRequiredDescriptionDefault
bodyYesThe content of the note represented with Markdown
bookIdYesThe notebook ID
statusNoThe status of the note
titleYesThe note title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "body": { "description": "The content of the note represented with Markdown", "maxLength": 1048576, "type": "string" }, "bookId": { "description": "The notebook ID", "maxLength": 128, "minLength": 5, "pattern": "^(book:|trash$)", "type": "string" }, "status": { "description": "The status of the note", "enum": [ "none", "active", "onHold", "completed", "dropped" ], "type": "string" }, "title": { "description": "The note title", "maxLength": 128, "type": "string" } }, "required": [ "bookId", "title", "body" ], "type": "object" }