与macOS上的Apple Notes连接的MCP服务器。

notes-get-folders: 获取所有文件夹。notes-get-notes: 获取文件夹中的所有笔记。notes-create-note: 创建带有标题和内容的新笔记。notes-get-note-by-id: 通过标识符获取笔记。notes-get-note-by-title: 通过精确匹配标题查找笔记。notes-get-note-count: 获取笔记总数。首先安装依赖并构建:
npm install && npm run build
在你的 ~/Library/Application\ Support/Claude/claude_desktop_config.json 中添加以下内容:
{
"mcpServers": {
"notes": {
"command": "node",
"args": ["path/to/notes/mcp/dist/index.js"]
}
}
}
然后在Claude设置中检查是否正在运行:

{
"mcpServers": {
"notes": {
"command": "node",
"args": ["path/to/notes/mcp/dist/index.js"]
}
}
}
然后检查Cursor MCP设置:

node dist/index.js
Notes MCP 在MIT许可证下发布。