@vrs-soft/wecom-aibot-mcp 2.6.0 → 3.1.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/dist/bin.d.ts +7 -6
- package/dist/bin.js +43 -800
- package/dist/channel-server.js +115 -17
- package/dist/config-wizard.d.ts +2 -61
- package/dist/config-wizard.js +22 -915
- package/dist/http-server.d.ts +6 -0
- package/dist/http-server.js +56 -0
- package/dist/index.d.ts +5 -15
- package/dist/index.js +5 -21
- package/dist/tools/index.js +14 -4
- package/package.json +4 -7
package/dist/bin.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* wecom-aibot-mcp - 企业微信智能机器人 MCP
|
|
3
|
+
* wecom-aibot-mcp - 企业微信智能机器人 MCP 客户端
|
|
4
4
|
*
|
|
5
|
-
*
|
|
5
|
+
* 连接远程 wecom-aibot-server daemon,为 Claude Code 提供微信消息通道。
|
|
6
6
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
7
|
+
* 运行模式:
|
|
8
|
+
* --channel Channel MCP 代理(SSE 唤醒,推荐)
|
|
9
|
+
* --install 交互式安装向导(配置 daemon 地址 + Token)
|
|
10
|
+
* --version 版本号
|
|
11
|
+
* --help 帮助
|
|
11
12
|
*/
|
|
12
13
|
export {};
|