Skip to main content
Get stdout and stderr output of a sandbox background command

Tool details

FieldValue
Nameget_sandbox_background_command_output
GroupSandbox

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Sandbox session ID returned by create_sandbox_session"
    },
    "command_id": {
      "type": "string",
      "description": "Background command ID"
    }
  },
  "required": [
    "id",
    "command_id"
  ],
  "additionalProperties": false,
  "description": "Input schema for the get_sandbox_background_command_output tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "stdout": {
      "type": "string",
      "description": "The stdout associated with this tool result."
    },
    "stderr": {
      "type": "string",
      "description": "The stderr associated with this tool result."
    }
  },
  "required": [
    "stdout",
    "stderr"
  ],
  "additionalProperties": true,
  "description": "Structured result returned by the get_sandbox_background_command_output tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}