Inkdrop MCP Server provides a bridge between Claude Desktop and the Inkdrop note-taking application through the Model Context Protocol. Built by Takuya Matsuyama, it enables Claude to interact with Inkdrop's local HTTP server API, allowing users to search, read, create, and update notes directly within Claude conversations. The server offers seven tools for managing notes, notebooks, and tags, making it valuable for workflows that require accessing and manipulating Markdown notes without leaving the AI assistant interface. Configuration requires setting up Inkdrop's local HTTP server and providing authentication credentials in Claude's desktop config file.
Aún no hay reseñas. ¡Sé el primero en reseñar!
Inicia sesión para unirte a la conversación
Retrieve the complete contents of the note by its ID from the database. Required input: noteId (string) - The ID of the note to retrieve.
List all notes that contain a given keyword. Required input: keyword (string) - Keyword to search for.
List all notes with specified conditions. Required input: bookId (string) - The notebook ID. Optional inputs include tagIds (array of strings), keyword (string), sort (string), and descending (boolean).
Create a new note in the database. Required inputs: bookId (string), title (string), body (string). Optional inputs: status (string), tags (array of strings).
Update an existing note in the database. Required inputs: _id (string), _rev (string), bookId (string), title (string), body (string). Optional inputs: status (string), tags (array of strings).
Retrieve a list of all notebooks.
Retrieve a single notebook by its ID. Required input: bookId (string) - The notebook ID.
Retrieve a list of all tags.
Retrieve a single tag by its ID. Required input: tagId (string) - The tag ID.
Create a new tag in the database. Required input: name (string) - The name of the tag. Optional input: color (string).
Update an existing tag in the database. Required inputs: _id (string), _rev (string), name (string). Optional input: color (string).