list-windows
Retrieve and display all windows within a specified tmux session using the session ID. Ideal for managing and monitoring multiple terminal workflows within a session.
Instructions
List windows in a tmux session
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | ID of the tmux session |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sessionId": {
"description": "ID of the tmux session",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}