Metadata-Version: 2.4
Name: open-note-cli
Version: 0.3.1
Summary: OpenNote CLI - 跨平台笔记管理命令行工具
Author-email: litongshuai <litongshuai.leader@qq.com>
License: 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.3.1
Requires-Dist: typer>=0.9.0
Requires-Dist: rich>=13.0.0
Dynamic: license-file

# open-note-cli

OpenNote CLI - 跨平台笔记管理命令行工具。

## 功能

- 创建、编辑、删除笔记
- 列出和搜索笔记
- 管理收藏和分类
- 启动和管理 MCP 服务器

## 安装

```bash
pip install open-note-cli
```

## 使用

### 笔记管理

```bash
# 创建笔记
opennote note create --title "我的笔记" --content "笔记内容"

# 列出笔记
opennote note list --limit 20

# 查看笔记详情
opennote note show <note-id>

# 编辑笔记
opennote note edit <note-id> --title "新标题"

# 搜索笔记
opennote note search "关键词"

# 删除笔记
opennote note delete <note-id>
```

### MCP 服务

```bash
# 启动 MCP 服务器
opennote mcp start

# 查看 MCP 配置
opennote mcp inspect
```

### 配置

```bash
# 查看当前配置
opennote config get
```

## 许可证

- MIT
- Apache 2.0
