@toolsdk.ai/registry 1.0.117 → 1.0.118

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.
@@ -49,6 +49,7 @@ export class SandockSandboxClient {
49
49
  body: {
50
50
  image: "seey/sandock-mcp:latest",
51
51
  workdir: "/mcpspace",
52
+ usePersistentCache: true,
52
53
  },
53
54
  });
54
55
  if (error) {
@@ -107,7 +108,8 @@ export class SandockSandboxClient {
107
108
  content: code,
108
109
  },
109
110
  });
110
- const output = await this.executeShellCommand(`cd /mcpspace && node ${tempFile}`);
111
+ // Set custom pnpm store directory (volume-mounted cache directory) before executing code
112
+ const output = await this.executeShellCommand(`cd /mcpspace && pnpm config set store-dir /data/pnpm-store && node ${tempFile}`);
111
113
  // Fire-and-forget: cleanup temp file in background without blocking result return
112
114
  // The cleanup will complete asynchronously, and logs will appear when it does
113
115
  this.cleanupTempFileAsync(tempFile, this.sandboxId).catch((err) => {
@@ -29,7 +29,6 @@ async function runMCP() {
29
29
  Object.entries(process.env).filter(([_, v]) => v !== undefined)
30
30
  ),
31
31
  PNPM_HOME: "/root/.local/share/pnpm",
32
- PNPM_STORE_PATH: "/pnpm-store",
33
32
  ${generateEnvVariables(mcpServerConfig.env, envs)}
34
33
  },
35
34
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.117",
3
+ "version": "1.0.118",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "keywords": [
6
6
  "mcp",