Inspect tmux metadata; accepts no client-supplied executable input. Returns metadata for one pane.
All Go tools · JSON · Source
Arguments
pane_idrequired · string- the pane id, such as %1
Schemas
The schema defines required fields, nested values, defaults, and validation constraints.
Input schema
{ "additionalProperties": false, "properties": { "pane_id": { "description": "the pane id, such as %1", "type": "string" } }, "required": [ "pane_id" ], "type": "object"}Output schema
{ "additionalProperties": false, "properties": { "dead": { "type": "boolean" }, "exitStatus": { "type": [ "null", "integer" ] }, "historyLimit": { "type": "integer" }, "historyLines": { "type": "integer" }, "inMode": { "type": "boolean" }, "pane": { "additionalProperties": false, "properties": { "active": { "type": "boolean" }, "currentCommand": { "type": "string" }, "geometry": { "additionalProperties": false, "properties": { "height": { "type": "integer" }, "left": { "type": "integer" }, "top": { "type": "integer" }, "width": { "type": "integer" } }, "required": [ "left", "top", "width", "height" ], "type": "object" }, "id": { "type": "string" }, "index": { "type": "integer" }, "isCaller": { "type": [ "null", "boolean" ] }, "session": { "type": "string" }, "window": { "type": "string" }, "windowId": { "type": "string" } }, "required": [ "id", "session", "window", "windowId", "index", "currentCommand", "active", "geometry", "isCaller" ], "type": "object" }, "path": { "type": "string" }, "pid": { "type": "integer" }, "title": { "type": "string" }, "zoomed": { "type": "boolean" } }, "required": [ "pane", "title", "path", "pid", "dead", "zoomed", "inMode", "historyLines", "historyLimit" ], "type": "object"}Tool annotations
{ "destructiveHint": true, "openWorldHint": true, "title": "Get pane info"}