{"id":26055507,"url":"https://github.com/inkdropapp/mcp-server","last_synced_at":"2026-06-08T14:32:49.674Z","repository":{"id":281141737,"uuid":"944335890","full_name":"inkdropapp/mcp-server","owner":"inkdropapp","description":"Inkdrop Model Context Protocol Server","archived":false,"fork":false,"pushed_at":"2026-02-19T05:21:20.000Z","size":123,"stargazers_count":50,"open_issues_count":0,"forks_count":11,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-19T11:38:26.976Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/inkdropapp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-07T07:04:47.000Z","updated_at":"2026-02-19T05:21:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"b0e95300-134e-47f3-8952-07b79577c558","html_url":"https://github.com/inkdropapp/mcp-server","commit_stats":null,"previous_names":["inkdropapp/mcp-server"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/inkdropapp/mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inkdropapp%2Fmcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inkdropapp%2Fmcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inkdropapp%2Fmcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inkdropapp%2Fmcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/inkdropapp","download_url":"https://codeload.github.com/inkdropapp/mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inkdropapp%2Fmcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34067349,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-08T10:19:34.790Z","updated_at":"2026-06-08T14:32:49.669Z","avatar_url":"https://github.com/inkdropapp.png","language":"JavaScript","funding_links":[],"categories":["📚 Projects (1974 total)","Note-Taking and Knowledge Bases","Other Tools and Integrations","🌐 Web Development"],"sub_categories":["MCP Servers","How to Submit"],"readme":"## Inkdrop MCP Server\n\nA [Model Context Protocol](https://github.com/modelcontextprotocol) server for the [Inkdrop Local HTTP Server API](https://developers.inkdrop.app/data-access/local-http-server).\n\n\u003ca href=\"https://glama.ai/mcp/servers/c7fgtnckbv\"\u003e\n  \u003cimg width=\"380\" height=\"200\" src=\"https://glama.ai/mcp/servers/c7fgtnckbv/badge\" alt=\"Inkdrop Server MCP server\" /\u003e\n\u003c/a\u003e\n\n## Installation\n\n1. [Set up a local HTTP server](https://developers.inkdrop.app/guides/integrate-with-external-programs)\n\n2. Add server config to Claude Desktop:\n   - MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`\n   - Windows: `%APPDATA%\\Claude\\claude_desktop_config.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"inkdrop\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@inkdropapp/mcp-server\"],\n      \"env\": {\n        \"INKDROP_LOCAL_SERVER_URL\": \"http://localhost:19840\",\n        \"INKDROP_LOCAL_USERNAME\": \"your-local-server-username\",\n        \"INKDROP_LOCAL_PASSWORD\": \"your-local-server-password\"\n      }\n    }\n  }\n}\n```\n\n## Components\n\n### Tools\n\n1. **`read-note`**: Retrieve the complete contents of the note by its ID from the database.\n   - Required inputs:\n     - `noteId`: The ID of the note to retrieve. It can be found as `_id` in the note docs. It always starts with `note:`.\n2. **`search-notes`**: List all notes that contain a given keyword.\n   - Required inputs:\n     - `keyword`: Keyword to search for.\n   - Note: Results include truncated note bodies (200 characters). Use `read-note` to get full content.\n   - Supports advanced search qualifiers like `book:`, `tag:`, `status:`, `title:`, etc.\n3. **`list-notes`**: List all notes with specified conditions.\n   - Required inputs:\n     - `bookId`: The notebook ID. It always starts with 'book:'.\n   - Optional inputs:\n     - `tagIds`: An array of tag IDs to filter. Each starts with 'tag:'.\n     - `keyword`: Keyword to filter notes.\n     - `sort`: Sort field (`updatedAt`, `createdAt`, or `title`). Default: `updatedAt`.\n     - `descending`: Reverse the order of output. Default: `true`.\n   - Note: Results include truncated note bodies (200 characters). Use `read-note` to get full content.\n4. **`create-note`**: Create a new note in the database.\n   - Required inputs:\n     - `bookId`: The notebook ID. Must start with 'book:' or be 'trash'.\n     - `title`: The note title.\n     - `body`: The content of the note in Markdown.\n   - Optional inputs:\n     - `status`: The note status (`none`, `active`, `onHold`, `completed`, `dropped`).\n     - `tags`: An array of tag IDs to assign to the note. Each must start with 'tag:'.\n5. **`update-note`**: Update an existing note in the database. Only the fields you provide will be updated; omitted fields remain unchanged.\n   - Required inputs:\n     - `_id`: The note ID. Must start with 'note:'.\n     - `_rev`: The revision ID (CouchDB MVCC-token).\n   - Optional inputs:\n     - `bookId`: The notebook ID. Must start with 'book:' or be 'trash'.\n     - `title`: The note title.\n     - `body`: The content of the note in Markdown.\n     - `status`: The note status (`none`, `active`, `onHold`, `completed`, `dropped`).\n     - `tags`: An array of tag IDs to assign to the note. Each must start with 'tag:'.\n6. **`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. You must first read the note with `read-note` to get the current body.\n   - Required inputs:\n     - `_id`: The note ID. Must start with 'note:'.\n     - `_rev`: The revision ID (CouchDB MVCC-token).\n     - `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.\n     - `new_string`: The text to replace `old_string` with. Use an empty string to delete the matched text.\n7. **`list-notebooks`**: Retrieve a list of all notebooks.\n8. **`read-book`**: Retrieve a single notebook by its ID.\n   - Required inputs:\n     - `bookId`: The notebook ID. Must start with 'book:'.\n9. **`list-tags`**: Retrieve a list of all tags.\n10. **`read-tag`**: Retrieve a single tag by its ID.\n    - Required inputs:\n      - `tagId`: The tag ID. Must start with 'tag:'.\n11. **`create-tag`**: Create a new tag in the database.\n    - Required inputs:\n      - `name`: The name of the tag.\n    - Optional inputs:\n      - `color`: The color type of the tag (`default`, `red`, `orange`, `yellow`, `olive`, `green`, `teal`, `blue`, `violet`, `purple`, `pink`, `brown`, `grey`, `black`). Default: `default`.\n12. **`update-tag`**: Update an existing tag in the database.\n    - Required inputs:\n      - `_id`: The tag ID. Must start with 'tag:'.\n      - `_rev`: The revision ID (CouchDB MVCC-token).\n      - `name`: The name of the tag.\n    - Optional inputs:\n      - `color`: The color type of the tag. Default: `default`.\n\n## Debugging\n\nSince MCP servers run over stdio, debugging can be challenging. For the best debugging\nexperience, we strongly recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector).\n\nYou can launch the MCP Inspector via [`npm`](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) with this command:\n\n```bash\nnpx @modelcontextprotocol/inspector \"./dist/index.js\"\n```\n\nBe sure that environment variables are properly configured.\n\nUpon launching, the Inspector will display a URL that you can access in your browser to begin debugging.\n\nYou can also watch the server logs with this command:\n\n```bash\ntail -n 20 -f ~/Library/Logs/Claude/mcp-server-inkdrop.log\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finkdropapp%2Fmcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finkdropapp%2Fmcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finkdropapp%2Fmcp-server/lists"}