redfox-wechat-mcp 0.4.1 → 0.4.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.
- package/README.md +2 -2
- package/cli.js +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -39,8 +39,8 @@ redfox-wechat-mcp --transport http --host 0.0.0.0 --port 8000
|
|
|
39
39
|
|
|
40
40
|
## Platforms
|
|
41
41
|
|
|
42
|
-
macOS (Apple Silicon) and Windows (x64). The matching native
|
|
43
|
-
is pulled in automatically via optionalDependencies.
|
|
42
|
+
macOS (Apple Silicon and Intel) and Windows (x64). The matching native
|
|
43
|
+
binary is pulled in automatically via optionalDependencies.
|
|
44
44
|
|
|
45
45
|
## API Key
|
|
46
46
|
|
package/cli.js
CHANGED
|
@@ -27,7 +27,7 @@ const binPath = findBin();
|
|
|
27
27
|
if (!binPath || !fs.existsSync(binPath)) {
|
|
28
28
|
process.stderr.write(
|
|
29
29
|
`Error: no RedFox MCP binary for ${process.platform}-${process.arch}.\n` +
|
|
30
|
-
`Supported platforms: darwin-arm64, win32-x64 (package: windows-x64)\n`
|
|
30
|
+
`Supported platforms: darwin-arm64, darwin-x64, win32-x64 (package: windows-x64)\n`
|
|
31
31
|
);
|
|
32
32
|
process.exit(1);
|
|
33
33
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redfox-wechat-mcp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "RedFoxHub WeChat MCP server",
|
|
5
5
|
"bin": {
|
|
6
6
|
"redfox-wechat-mcp": "./cli.js"
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"node": ">=14"
|
|
27
27
|
},
|
|
28
28
|
"optionalDependencies": {
|
|
29
|
-
"redfox-mcp-bin-darwin-arm64": "0.4.
|
|
30
|
-
"redfox-mcp-bin-
|
|
29
|
+
"redfox-mcp-bin-darwin-arm64": "0.4.2",
|
|
30
|
+
"redfox-mcp-bin-darwin-x64": "0.4.2",
|
|
31
|
+
"redfox-mcp-bin-windows-x64": "0.4.2"
|
|
31
32
|
}
|
|
32
33
|
}
|