Metadata-Version: 2.4
Name: open-note-mcp
Version: 0.1.0
Summary: OpenNote MCP Server - Model Context Protocol 服务
Author-email: litongshuai <litongshuai.leader@qq.com>
License-Expression: MIT OR Apache-2.0
Project-URL: Homepage, https://github.com/The-Flash-7/open-note
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: open-note-core>=0.1.0
Requires-Dist: mcp>=1.0.0
Dynamic: license-file

# open-note-mcp

OpenNote MCP Server - Model Context Protocol 服务。

## 功能

提供标准 MCP 协议的笔记管理工具，可集成到 Claude Desktop、Cursor、Windsurf、OpenCode 等 AI 编辑器中。

### 可用工具

| 工具名 | 描述 |
|--------|------|
| `search_notes` | 搜索笔记 |
| `list_notes` | 列出笔记 |
| `get_note` | 查看笔记详情 |
| `create_note` | 创建笔记 |
| `update_note` | 编辑笔记 |
| `delete_note` | 删除笔记 |

## 安装

```bash
pip install open-note-mcp
```

## 使用

### 独立运行

```bash
open-note-mcp
```

### 集成到 AI 编辑器

在 AI 编辑器的 MCP 配置中添加：

```json
{
  "mcpServers": {
    "open-note": {
      "command": "python",
      "args": ["-m", "open_note_mcp.mcp_server"]
    }
  }
}
```

或使用 CLI 启动：

```bash
opennote mcp start
```

## 许可证

- MIT
- Apache 2.0
