killSandbox
Destroy a sandbox by its ID using the MCP server, enabling efficient management and termination of sandbox environments for 302AI integrations.
Instructions
Destroy a sandbox by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sandbox_id | Yes | The ID of the sandbox to destroy |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sandbox_id": {
"description": "The ID of the sandbox to destroy",
"type": "string"
}
},
"required": [
"sandbox_id"
],
"type": "object"
}