cloudflare-mcp-smart-proxy 1.5.0 → 1.5.1
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 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,9 +47,13 @@ npx -y -p cloudflare-mcp-smart-proxy cloudmcp-connector activate codex \
|
|
|
47
47
|
第一次运行会生成设备密钥并发起接入申请,不会取得任何租户配置或凭证。管理员在 CloudMCP 后台的“生态连接中心”选择精确生态与工作区并批准后,将一次性审批密令回传给智能体。智能体随后运行:
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
|
|
50
|
+
printf '请输入一次性审批密令:'
|
|
51
|
+
read -s CLOUDMCP_APPROVAL_CODE
|
|
52
|
+
printf '\n'
|
|
53
|
+
export CLOUDMCP_APPROVAL_CODE
|
|
51
54
|
npx -y -p cloudflare-mcp-smart-proxy cloudmcp-connector activate codex \
|
|
52
55
|
--cloud-url https://your-cloudmcp.example.com
|
|
56
|
+
unset CLOUDMCP_APPROVAL_CODE
|
|
53
57
|
```
|
|
54
58
|
|
|
55
59
|
审批密令 10 分钟内有效、只能成功领取一次,并且只能由原申请设备签名领取。连接凭证写入权限为 `0600` 的独立文件,IDE 配置只保存该文件路径。CloudMCP 的机器可发现入口为 `/.well-known/cloudmcp`。
|