get-command-result
Retrieve the output of a previously executed command by specifying its ID. Enables viewing and managing results from tmux terminal sessions in Claude Desktop.
Instructions
Get the result of an executed command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commandId | Yes | ID of the executed command |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"commandId": {
"description": "ID of the executed command",
"type": "string"
}
},
"required": [
"commandId"
],
"type": "object"
}