read_output
Retrieve process output from MalwareAnalyzerMCP by specifying the process ID. Enables monitoring or analysis of terminal command results during malware investigation.
Instructions
Read output from a running or completed process.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pid | Yes | The process ID to read output from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pid": {
"description": "The process ID to read output from",
"type": "integer"
}
},
"required": [
"pid"
],
"type": "object"
}