just-bash-mcp 2.9.2 → 2.9.3

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.
Files changed (2) hide show
  1. package/README.md +7 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,18 +9,16 @@ Execute bash commands in a secure, isolated environment with an in-memory virtua
9
9
 
10
10
  Built on top of [`just-bash`](https://github.com/vercel-labs/just-bash) v2.10.2.
11
11
 
12
- ## What's New in v2.9.0
12
+ ## What's New in v2.9.2
13
13
 
14
- - **Synced with upstream `just-bash` v2.10.2** - Latest upstream commands, APIs, and type exports
14
+ - **Expanded Vercel Sandbox API coverage** - `bash_sandbox_run` now supports optional `includeOutput` and `includeLogs`
15
+ - **Sandbox domain support** - New `bash_sandbox_domain` tool returns the current sandbox domain/identifier
16
+ - **Synced with upstream `just-bash` v2.10.2** - Full upstream commands, APIs, and type exports
15
17
  - **Defense-in-depth mode** - Opt-in monkey-patching of dangerous JS globals (`JUST_BASH_DEFENSE_IN_DEPTH=true`)
16
18
  - **Python support** - Python3 via Pyodide (`JUST_BASH_ENABLE_PYTHON=true`)
17
- - **Vercel Sandbox API** - Compatible `bash_sandbox_*` tools for isolated execution
18
- - **oxlint/oxfmt toolchain** - Replaced tsc/biome with faster oxlint and oxfmt
19
- - **Configurable limits** - Fine-grained control over glob ops, string length, array size, heredoc size, and more
20
- - **`rg` (ripgrep)** - Fast regex search with `--files`, `-d`, `--stats`, `-t markdown`
21
- - **`tar`** - Archive support with compression
22
- - **MountableFS** - Mount multiple filesystems at different paths
23
- - **ReadWriteFS** - Direct read-write access to real directories
19
+ - **Vercel Sandbox API tools** - Compatible `bash_sandbox_*` tools for isolated execution
20
+ - **MountableFS + ReadWriteFS** - Real directory mounts with overlay/read-write options
21
+ - **Configurable execution limits** - Fine-grained control over loops, strings, arrays, heredocs, and substitutions
24
22
 
25
23
  ## Features
26
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "just-bash-mcp",
3
- "version": "2.9.2",
3
+ "version": "2.9.3",
4
4
  "description": "MCP server providing a sandboxed bash environment using just-bash",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",