Back to MCP directory
publicPublicdnsLocal runtime

notes-mcp

一个连接macOS苹果笔记的MCP服务器,提供笔记文件夹和内容管理功能

article

README

🚀 Notes MCP

Notes MCP是一个能与macOS系统上的苹果备忘录进行连接的MCP服务器,为用户提供便捷的备忘录管理功能。

Claude使用示例

✨ 主要特性

  • 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

💻 使用示例

与Claude桌面版配合使用

在你的 ~/Library/Application\ Support/Claude/claude_desktop_config.json 文件中添加以下内容:

{
    "mcpServers": {
        "notes": {
            "command": "node",
            "args": ["path/to/notes/mcp/dist/index.js"]
        }
    }
}

然后在Claude设置中检查其是否正在运行: Claude MCP设置

与Cursor配合使用

在配置文件中添加以下内容:

{
    "mcpServers": {
        "notes": {
            "command": "node",
            "args": ["path/to/notes/mcp/dist/index.js"]
        }
    }
}

接着检查Cursor MCP设置: Cursor MCP设置

独立使用或用于其他项目

node dist/index.js

📄 许可证

Notes MCP 采用 MIT许可证 授权。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client