@pandanpc/mcp-server 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +16 -16
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,25 +1,25 @@
1
1
  # @pandanpc/mcp-server
2
2
 
3
- PandaNpc MCP Server — PandaNote、工作区、AI 模型和提供商管理能力暴露给 Claude CodeCursorWindsurf MCP 客户端。
3
+ PandaNpc MCP Server — expose PandaNote, workspaces, AI models, and provider management to Claude Code, Cursor, Windsurf, and other MCP clients.
4
4
 
5
- ## 安装
5
+ ## Installation
6
6
 
7
7
  ```bash
8
8
  npm install -g @pandanpc/mcp-server
9
9
  ```
10
10
 
11
- 安装时自动从 `https://cos.pandanpc.com/mcp-server/` 下载对应平台的 Rust 二进制。
11
+ The `postinstall` script downloads the matching Rust binary for your platform from `https://cos.pandanpc.com/mcp-server/`.
12
12
 
13
- ### 支持平台
13
+ ### Supported platforms
14
14
 
15
15
  - Linux x64
16
16
  - macOS x64 (Intel)
17
17
  - macOS arm64 (Apple Silicon)
18
18
  - Windows x64
19
19
 
20
- ## Claude Code 配置
20
+ ## Claude Code configuration
21
21
 
22
- 编辑 `~/.config/claude-code/config.json`(或对应平台路径):
22
+ Edit `~/.config/claude-code/config.json` (or the platform equivalent):
23
23
 
24
24
  ```json
25
25
  {
@@ -31,29 +31,29 @@ npm install -g @pandanpc/mcp-server
31
31
  }
32
32
  ```
33
33
 
34
- ## 命令行使用
34
+ ## CLI usage
35
35
 
36
36
  ```bash
37
- # stdio 模式(MCP 客户端默认)
37
+ # stdio mode (default for MCP clients)
38
38
  pandanpc-mcp
39
39
 
40
- # HTTP/SSE 模式
40
+ # HTTP/SSE mode
41
41
  pandanpc-mcp --http --port 3100
42
42
  ```
43
43
 
44
- ## 可用工具
44
+ ## Available tools
45
45
 
46
- - `note_login` — 登录 PandaNpc 账号
46
+ - `note_login` — log in to your PandaNpc account
47
47
  - `list_workspaces` / `create_workspace` / `update_workspace` / `delete_workspace`
48
48
  - `list_notes` / `create_note` / `read_note` / `update_note` / `delete_note` / `move_note_to_workspace`
49
- - `search_notes` — 标题 + 全文 + 语义搜索
50
- - `generate_note_title` — AI 生成标题和图标
49
+ - `search_notes` — title + full-text + semantic search
50
+ - `generate_note_title` — AI-generated title and icon
51
51
  - `list_providers` / `create_provider` / `update_provider` / `delete_provider`
52
52
  - `list_models` / `list_model_types` / `create_model` / `update_model` / `delete_model`
53
- - `sync_rules` — 同步 `.claude/rules/` `.claude/skills/` Markdown PandaNote
53
+ - `sync_rules` — sync `.claude/rules/` and `.claude/skills/` Markdown files to PandaNote
54
54
 
55
- 首次使用请先调用 `note_login` 登录。
55
+ Call `note_login` first to authenticate.
56
56
 
57
- ## 许可
57
+ ## License
58
58
 
59
59
  MIT © PandaNpc
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandanpc/mcp-server",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "PandaNpc MCP Server — Claude Code and MCP clients integration for PandaNote",
5
5
  "keywords": ["mcp", "pandanpc", "claude", "notes", "panda-note"],
6
6
  "homepage": "https://pandanpc.com",