
这是一个使用模型上下文协议(MCP)的服务器,它能够对你的Apple Notes进行语义搜索和RAG(检索增强生成)。这使得像Claude这样的AI助手能够在对话中搜索并引用你的Apple Notes。

all-MiniLM-L6-v2对Apple Notes进行语义搜索git clone https://github.com/RafalWilinski/mcp-apple-notes
cd mcp-apple-notes
bun install

claude_desktop_config.json文件,并添加以下条目:{
"mcpServers": {
"local-machine": {
"command": "/Users/<YOUR_USER_NAME>/.bun/bin/bun",
"args": ["/Users/<YOUR_USER_NAME>/apple-notes-mcp/index.ts"]
}
}
}
重要提示:将<YOUR_USER_NAME>替换为你的实际用户名。

查看日志:
tail -n 50 -f ~/Library/Logs/Claude/mcp-server-local-machine.log
# 或
tail -n 50 -f ~/Library/Logs/Claude/mcp.log