sandboxbox 3.0.68 → 3.0.69

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/CHANGELOG.md CHANGED
@@ -6,12 +6,19 @@
6
6
  - `.claude-sandbox/` directory structure for bundled Claude settings and plugins
7
7
  - Automatic plugin path rewriting during sandbox creation to point to sandbox locations
8
8
  - Bundled glootie-cc MCP plugin in `.claude-sandbox/plugins/marketplaces/`
9
+ - MCP servers configuration in plugin.json and settings.json (glootie, playwright, vexify)
10
+ - Automatic MCP server path rewriting to use absolute sandbox directory paths
9
11
 
10
12
  ### Changed
11
13
  - Sandbox creation now uses `.claude-sandbox/` configuration instead of `sandboxbox-settings.json`
12
14
  - Plugin paths in `config.json` are automatically updated to sandbox-relative paths
15
+ - MCP server paths are rewritten from ${HOME} placeholders to actual sandbox paths
13
16
  - Simplified Claude settings management with repository-based configuration
14
17
 
18
+ ### Known Issues
19
+ - MCP tools not loading in Claude Code CLI - configuration is correct but servers not starting
20
+ - Requires investigation into Claude Code CLI MCP server loading mechanism
21
+
15
22
  ## [3.0.64] - 2025-10-27
16
23
 
17
24
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sandboxbox",
3
- "version": "3.0.68",
3
+ "version": "3.0.69",
4
4
  "description": "Lightweight process containment sandbox for CLI tools - Playwright, Claude Code, and more. Pure Node.js, no dependencies.",
5
5
  "type": "module",
6
6
  "main": "cli.js",
@@ -271,7 +271,8 @@ export async function claudeCommand(projectDir, prompt, flags = {}) {
271
271
  const claudeArgs = [
272
272
  '--verbose',
273
273
  '--output-format', 'stream-json',
274
- '--dangerously-skip-permissions'
274
+ '--dangerously-skip-permissions',
275
+ '--mcp-config', join(sandboxDir, '.claude', 'settings.json')
275
276
  ];
276
277
 
277
278
  return new Promise((resolve, reject) => {