@yukkit/e2b-mcp-server 0.5.0 → 0.6.0
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/README.md +1 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -177,7 +177,7 @@ Get a download URL for a file in the sandbox.
|
|
|
177
177
|
|
|
178
178
|
- `filePath`: Path to the file
|
|
179
179
|
- `sandboxId`: Target sandbox ID
|
|
180
|
-
- `useSignatureExpiration` (optional): Signature expiration in milliseconds (default:
|
|
180
|
+
- `useSignatureExpiration` (optional): Signature expiration in milliseconds (default: 300000 / 5 minutes)
|
|
181
181
|
|
|
182
182
|
### 9. list_sandbox_ids
|
|
183
183
|
|
package/build/index.js
CHANGED
|
@@ -68,7 +68,7 @@ const getSandboxUrlSchema = z.object({
|
|
|
68
68
|
const getFileDownloadUrlSchema = z.object({
|
|
69
69
|
filePath: z.string().min(1).describe("Path to the file"),
|
|
70
70
|
sandboxId: z.string().describe("Sandbox ID"),
|
|
71
|
-
useSignatureExpiration: z.number().default(
|
|
71
|
+
useSignatureExpiration: z.number().default(300_000).describe("Signature expiration in milliseconds (default: 5 minutes)"),
|
|
72
72
|
});
|
|
73
73
|
const killSandboxSchema = z.object({
|
|
74
74
|
sandboxId: z.string().describe("Sandbox ID"),
|