leapfrog-mcp 0.6.3 → 0.6.4
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/index.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -55,7 +55,9 @@ const LEAP_TILE = process.env.LEAP_TILE || "grid";
|
|
|
55
55
|
const LEAP_TILE_PADDING = Number(process.env.LEAP_TILE_PADDING ?? 8);
|
|
56
56
|
const LEAP_SCREEN_WIDTH = Number(process.env.LEAP_SCREEN_WIDTH || 0);
|
|
57
57
|
const LEAP_SCREEN_HEIGHT = Number(process.env.LEAP_SCREEN_HEIGHT || 0);
|
|
58
|
-
|
|
58
|
+
// WORKAROUND: Claude Code on Windows does not pass mcp.json env vars.
|
|
59
|
+
// Default multi-tile ON so cross-terminal tiling works out of the box.
|
|
60
|
+
const LEAP_MULTI_TILE = process.env.LEAP_MULTI_TILE !== "false";
|
|
59
61
|
const LEAP_HUD = process.env.LEAP_HUD === "true";
|
|
60
62
|
const LEAP_AUTO_CONSENT = process.env.LEAP_AUTO_CONSENT !== "false"; // default ON
|
|
61
63
|
const LEAP_TRACE = process.env.LEAP_TRACE === "true";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "leapfrog-mcp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "Multi-session browser MCP for AI agents — 36 tools, stealth, persistent auth, code-first scripts, API sniffer, agent intelligence",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|