Inkdrop Model Context Protocol Server
Most planning and project tracking work still happens through a UI a human drives. MCP Server Inkdropapp MCP server moves it into the conversation instead. Inkdrop Model Context Protocol Server.
Installation goes through your MCP client rather than a global install: point it at @modelcontextprotocol/inspector on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
The server publishes 14 tools. What each one is for:
noteId — The ID of the note to retrieve. It can be found as _id in the note docs. It always starts with note:includeTemplate — When true and the note has a sourceTemplateId, also fetch that template and embed its body (fill-out instructions and examples) as an extra textNote — If the note was created from a template, the response includes a resource link to its source template, whose body holds the fill-out instructions andkeyword — Keyword to search forbookId — The notebook ID. It always starts with 'book:'tagIds — An array of tag IDs to filter. Each starts with 'tag:'sort — Sort field (updatedAt, createdAt, or title). Default: updatedAtdescending — Reverse the order of output. Default: truetitle — The note titlebody — The content of the note in Markdownstatus — The note status (none, active, onHold, completed, dropped)tags — An array of tag IDs to assign to the note. Each must start with 'tag:'Configuration is passed through the environment: INKDROP_LOCAL_SERVER_URL, INKDROP_LOCAL_USERNAME, INKDROP_LOCAL_PASSWORD. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Among the planning and project tracking options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP Server Inkdropapp's toolset — noteId, includeTemplate, Note and 11 more — is a fair guide to whether it matches your workflow. It is maintained by inkdropapp; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against MCP Server Inkdropapp's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| noteId | The ID of the note to retrieve. It can be found as _id in the note docs. It always starts with note:. |
| includeTemplate | When true and the note has a sourceTemplateId, also fetch that template and embed its body (fill-out instructions and examples) as an extra text block. Default: false. |
| Note | If the note was created from a template, the response includes a resource link to its source template, whose body holds the fill-out instructions and examples. |
| keyword | Keyword to search for. |
| bookId | The notebook ID. It always starts with 'book:'. |
| tagIds | An array of tag IDs to filter. Each starts with 'tag:'. |
| sort | Sort field (updatedAt, createdAt, or title). Default: updatedAt. |
| descending | Reverse the order of output. Default: true. |
| title | The note title. |
| body | The content of the note in Markdown. |
| status | The note status (none, active, onHold, completed, dropped). |
| tags | An array of tag IDs to assign to the note. Each must start with 'tag:'. |
| old_string | The exact text to find in the note body. Must match exactly one occurrence. Include enough surrounding context to ensure a unique match. |
| new_string | The text to replace old_string with. Use an empty string to delete the matched text. |
{
"mcpServers": {
"inkdrop": {
"command": "npx",
"args": ["-y", "@inkdropapp/mcp-server"],
"env": {
"INKDROP_LOCAL_SERVER_URL": "http://localhost:19840",
"INKDROP_LOCAL_USERNAME": "your-local-server-username",
"INKDROP_LOCAL_PASSWORD": "your-local-server-password"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| INKDROP_LOCAL_SERVER_URL | Endpoint or connection string the server talks to. | Yes |
| INKDROP_LOCAL_USERNAME | Configuration value read at startup. | Optional |
| INKDROP_LOCAL_PASSWORD | Configuration value read at startup. | Optional |
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Search and read your Drive — Docs, Sheets and files become context your assistant can actually use.
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Stop letting your assistant hallucinate n8n node parameters — this server hands it the real schemas, templates and validation.