tmux_select_pane
Select a specific pane in a tmux session to make it active for commands. Use this tool to switch between terminal panes programmatically for SSH access, command execution, and terminal automation.
Instructions
Select a specific pane in a tmux session to make it active for commands.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_name | Yes | Name of the tmux session | |
| pane_index | Yes | Pane index to select (e.g., '0', '1', '2') |
Input Schema (JSON Schema)
{
"properties": {
"pane_index": {
"description": "Pane index to select (e.g., '0', '1', '2')",
"type": "string"
},
"session_name": {
"description": "Name of the tmux session",
"type": "string"
}
},
"required": [
"session_name",
"pane_index"
],
"type": "object"
}