@bigbrain-work/mcp-connect 1.1.0 → 1.2.0
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 +5 -0
- package/package.json +2 -2
- package/src/constants.js +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
石榴 AI MCP 一键配置工具。用于将石榴 AI 的远程 MCP 服务接入 Codex、Claude Code 或 Cursor。
|
|
4
4
|
|
|
5
|
+
客户不需要指定版本号。`npx` 会从 npm 获取 `latest` 对应的最新版:
|
|
6
|
+
|
|
5
7
|
## 使用
|
|
6
8
|
|
|
7
9
|
先在石榴 AI 页面复制当前账户的 API Key。推荐直接运行智能一键配置,安装器会检测本机已有的 Codex、Claude Code 和 Cursor:
|
|
@@ -10,6 +12,8 @@
|
|
|
10
12
|
npx -y @bigbrain-work/mcp-connect
|
|
11
13
|
```
|
|
12
14
|
|
|
15
|
+
连接完成后,Agent 可通过同一个 MCP 地址调用 `get_openstoryline_installer`,获取 Windows 或 macOS 本地 AI 剪辑工具的短期安装地址。
|
|
16
|
+
|
|
13
17
|
也可以明确指定客户端:
|
|
14
18
|
|
|
15
19
|
```bash
|
|
@@ -46,6 +50,7 @@ npx -y @bigbrain-work/mcp-connect status
|
|
|
46
50
|
## 服务信息
|
|
47
51
|
|
|
48
52
|
- MCP 地址:`https://api.bigbrain.work/shiliu/mcp`
|
|
53
|
+
- MCP 地址是 Agent 连接服务所用的完整 HTTP 接口地址,不需要另配其他域名。
|
|
49
54
|
- 认证方式:`Authorization: Bearer <API_KEY>`
|
|
50
55
|
- 配置名称:`shiliu_mcp`
|
|
51
56
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbrain-work/mcp-connect",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "石榴 AI MCP
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "石榴 AI MCP 智能配置工具,支持自动检测、通用 HTTP MCP 接入和本地 AI 剪辑工具安装。",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"mcp-connect": "bin/mcp-connect.js"
|
package/src/constants.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const PACKAGE_NAME = '@bigbrain-work/mcp-connect'
|
|
2
|
-
export const PACKAGE_VERSION = '1.
|
|
2
|
+
export const PACKAGE_VERSION = '1.2.0'
|
|
3
3
|
export const SERVER_NAME = 'shiliu_mcp'
|
|
4
4
|
export const MCP_URL = 'https://api.bigbrain.work/shiliu/mcp'
|
|
5
5
|
export const API_KEY_ENV = 'SHILIU_AI_API_KEY'
|