@webclaw/mcp 0.6.15 → 0.6.17
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/package.json +2 -2
- package/webclaw-mcp.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webclaw/mcp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.17",
|
|
4
4
|
"description": "Zero-install launcher for the webclaw MCP server: web extraction and anti-bot access for AI agents. Runs `npx @webclaw/mcp`.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"webclaw-mcp": "./webclaw-mcp.mjs"
|
|
7
|
+
"webclaw-mcp-launcher": "./webclaw-mcp.mjs"
|
|
8
8
|
},
|
|
9
9
|
"mcpName": "io.github.0xMassi/webclaw",
|
|
10
10
|
"files": [
|
package/webclaw-mcp.mjs
CHANGED
|
@@ -38,7 +38,7 @@ import https from "node:https";
|
|
|
38
38
|
const REPO = "0xMassi/webclaw";
|
|
39
39
|
// Release the wrapper installs. Bump this (and the package version) on each
|
|
40
40
|
// core release, or override at runtime with WEBCLAW_MCP_VERSION.
|
|
41
|
-
const RELEASE_TAG = process.env.WEBCLAW_MCP_VERSION || "v0.6.
|
|
41
|
+
const RELEASE_TAG = process.env.WEBCLAW_MCP_VERSION || "v0.6.16";
|
|
42
42
|
|
|
43
43
|
const IS_WINDOWS = platform() === "win32";
|
|
44
44
|
const BIN_NAME = IS_WINDOWS ? "webclaw-mcp.exe" : "webclaw-mcp";
|