record_safer_pro_mcp 1.0.34 → 1.0.35
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.
- package/README.md +40 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,6 +18,18 @@ Record Safer Pro 的官方 MCP Server。它让具备本机执行能力的 AI 客
|
|
|
18
18
|
|
|
19
19
|
`Record Safer Pro MCP` 依赖 `node` / `npx`,因此第一步是安装 Node.js `>= 18`。
|
|
20
20
|
|
|
21
|
+
可直接使用 Node.js 官方下载页:
|
|
22
|
+
|
|
23
|
+
- 中文下载页:[nodejs.org/zh-cn/download](https://nodejs.org/zh-cn/download)
|
|
24
|
+
- 英文下载页:[nodejs.org/en/download](https://nodejs.org/en/download)
|
|
25
|
+
- 建议优先安装 `LTS` 版本
|
|
26
|
+
|
|
27
|
+
如果你在 macOS 上已经安装了 Homebrew,也可以直接执行:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
brew install node
|
|
31
|
+
```
|
|
32
|
+
|
|
21
33
|
安装完成后,先在终端确认:
|
|
22
34
|
|
|
23
35
|
```bash
|
|
@@ -29,6 +41,14 @@ npx -v
|
|
|
29
41
|
|
|
30
42
|
这里用 `OpenCode` 作为示例,因为它本身支持终端执行、模型切换和 MCP 接入,对第一次上手比较直接。
|
|
31
43
|
|
|
44
|
+
如果你不确定下面这些命令要在哪里输入,请先打开系统自带的终端程序:
|
|
45
|
+
|
|
46
|
+
- macOS:打开“终端 Terminal”,可以按 `Command + Space` 搜索“终端”或 `Terminal`
|
|
47
|
+
- Windows:打开 `PowerShell` 或 `Windows Terminal`
|
|
48
|
+
- Linux:打开系统自带的 `Terminal`
|
|
49
|
+
|
|
50
|
+
下面这些命令都应该输入在终端窗口里,不是发到 AI 聊天框里。
|
|
51
|
+
|
|
32
52
|
OpenCode 官方安装方式:
|
|
33
53
|
|
|
34
54
|
```bash
|
|
@@ -401,6 +421,18 @@ If your users are musicians rather than developers, they should prepare these th
|
|
|
401
421
|
|
|
402
422
|
This MCP depends on `node` and `npx`, so install Node.js `>= 18` and confirm:
|
|
403
423
|
|
|
424
|
+
Official download pages:
|
|
425
|
+
|
|
426
|
+
- Chinese download page: [nodejs.org/zh-cn/download](https://nodejs.org/zh-cn/download)
|
|
427
|
+
- English download page: [nodejs.org/en/download](https://nodejs.org/en/download)
|
|
428
|
+
- We recommend installing the `LTS` release
|
|
429
|
+
|
|
430
|
+
If you're on macOS and already use Homebrew, you can also run:
|
|
431
|
+
|
|
432
|
+
```bash
|
|
433
|
+
brew install node
|
|
434
|
+
```
|
|
435
|
+
|
|
404
436
|
```bash
|
|
405
437
|
node -v
|
|
406
438
|
npx -v
|
|
@@ -410,6 +442,14 @@ npx -v
|
|
|
410
442
|
|
|
411
443
|
This README uses `OpenCode` as the example because it supports terminal execution, model selection, and MCP integration out of the box.
|
|
412
444
|
|
|
445
|
+
If you're not sure where to type the commands below, open your system terminal first:
|
|
446
|
+
|
|
447
|
+
- macOS: open `Terminal` from Spotlight with `Command + Space`
|
|
448
|
+
- Windows: open `PowerShell` or `Windows Terminal`
|
|
449
|
+
- Linux: open your system `Terminal`
|
|
450
|
+
|
|
451
|
+
All commands below should be entered in that terminal window, not pasted into an AI chat box.
|
|
452
|
+
|
|
413
453
|
Official install options:
|
|
414
454
|
|
|
415
455
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "record_safer_pro_mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.35",
|
|
4
4
|
"description": "Record Safer Pro MCP Server — 专业多通道录音工作流 AI 控制接口 / AI control interface for professional multichannel recording workflows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|