Inkdrop MCP Server

Official

create-note

Add structured notes to your Inkdrop database by specifying a title, content in Markdown, and a notebook ID. Define note status for better organization and retrieval.

Instructions

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" }

You must be authenticated.

Other Tools from Inkdrop MCP Server

Related Tools

ID: c7fgtnckbv