Inkdrop
JSON →Interact with the local Inkdrop note-taking app database via its HTTP API.
Install
npx @modelcontextprotocol/inspector Tools · 12
- read-note Retrieve the complete contents of the note by its ID from the database.
- search-notes List all notes that contain a given keyword.
- list-notes List all notes with specified conditions.
- create-note Create a new note in the database.
- update-note Update an existing note in the database. Only the fields you provide will be updated; omitted fields remain unchanged.
- patch-note Update the body of an existing note by performing an exact string replacement. More efficient than update-note for small edits to large notes as it saves tokens.
- list-notebooks Retrieve a list of all notebooks.
- read-book Retrieve a single notebook by its ID.
- list-tags Retrieve a list of all tags.
- read-tag Retrieve a single tag by its ID.
- create-tag Create a new tag in the database.
- update-tag Update an existing tag in the database.
Environment variables
INKDROP_LOCAL_SERVER_URL
Links
★ 54 GitHub stars