get_command_output
Retrieve complete command output when previous results were truncated. Use the execution ID from truncation messages to access full data, filter lines, or specify ranges.
Instructions
Retrieve the full output from a previous command execution.
Use this tool when command output was truncated and you need to see the complete result. The executionId is provided in the truncation message of the original command.
Parameters:
executionId (required): The execution ID from the truncation message
startLine (optional): 1-based start line (default: 1)
endLine (optional): 1-based end line (default: last line)
search (optional): Regex pattern (case-insensitive) to filter lines
maxLines (optional): Maximum lines to return (default: config value)
Examples:
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| executionId | Yes | Execution ID from a previous command (shown in truncation message) | |
| startLine | No | 1-based start line (optional, default 1) | |
| endLine | No | 1-based end line (optional, default last line) | |
| search | No | Regex pattern to filter lines (case-insensitive) | |
| maxLines | No | Maximum lines to return (default: config maxReturnLines) |