Inkdrop MCP 服务器
Inkdrop 本地 HTTP 服务器 API的模型上下文协议服务器。
安装
将服务器配置添加到 Claude Desktop:
MacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
成分
工具
read-note:通过数据库中的 ID 检索笔记的完整内容。必需输入:
noteId:要检索的笔记的 ID。在笔记文档中,它可以作为_id找到。它始终以note:开头。
search-notes:列出包含给定关键字的所有注释。必需输入:
keyword:要搜索的关键字。
注意:结果包含截断的笔记正文(200 个字符)。使用
read-note获取完整内容。支持高级搜索限定符,如
book:、tag:、status:、title:等。
list-notes:列出符合指定条件的所有注释。必需输入:
bookId:笔记本 ID。它始终以 'book:' 开头。
可选输入:
tagIds:要过滤的标签 ID 数组。每个标签 ID 都以 'tag:' 开头。keyword:用于过滤笔记的关键字。sort:排序字段(updatedAt、createdAt或title)。默认值:updatedAt。descending:反转输出顺序。默认值:true。
注意:结果包含截断的笔记正文(200 个字符)。使用
read-note获取完整内容。
create-note:在数据库中创建新注释。必需输入:
bookId:笔记本 ID。必须以 'book:' 开头,或者为 'trash'。title:笔记标题。body:Markdown 格式的笔记内容。
可选输入:
status:笔记状态(none、active、onHold、completed、dropped)。
update-note:更新数据库中现有的注释。必需输入:
_id:笔记 ID。必须以 'note:' 开头。_rev:修订 ID(CouchDB MVCC 令牌)。bookId:笔记本 ID。必须以 'book:' 开头,或者为 'trash'。title:笔记标题。body:Markdown 格式的笔记内容。
可选输入:
status:笔记状态(none、active、onHold、completed、dropped)。
list-notebooks:检索所有笔记本的列表。list-tags:检索所有标签的列表。
调试
由于 MCP 服务器通过 stdio 运行,调试起来可能比较困难。为了获得最佳调试体验,我们强烈建议使用MCP Inspector 。
您可以使用以下命令通过npm启动 MCP Inspector:
确保环境变量配置正确。
启动后,检查器将显示一个 URL,您可以在浏览器中访问该 URL 以开始调试。
您还可以使用以下命令查看服务器日志:
local-only server
The server can only run on the client's local machine because it depends on local resources.
通过模型上下文协议将 Inkdrop 笔记应用程序与 Claude AI 集成,允许 Claude 在 Inkdrop 数据库中搜索、阅读、创建和更新笔记。
Related Resources
Related MCP Servers
- Asecurity-licenseAqualityConnects Sketchup to Claude AI through the Model Context Protocol, allowing Claude to directly interact with and control Sketchup for prompt-assisted 3D modeling and scene manipulation.Last updated -10141
- Asecurity-licenseAqualityIntegration that connects Sketchup to Claude AI through the Model Context Protocol, allowing Claude to directly interact with and control Sketchup for prompt-assisted 3D modeling, scene creation, and manipulation.Last updated -1011MIT License
- Asecurity-licenseAqualityA Model Context Protocol server that enables seamless integration between Claude AI and development tools like VSCode, Augment, Vercel, Airtable, and Square.Last updated -7MIT License