@arearseth/tmux-mcp 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -6
- package/build/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -61,17 +61,24 @@ The CLI flag only sets the server-wide default. You can still override individua
|
|
|
61
61
|
|
|
62
62
|
## Available Tools
|
|
63
63
|
|
|
64
|
+
### Session & Window Management
|
|
64
65
|
- `list-sessions` - List all active tmux sessions
|
|
65
66
|
- `find-session` - Find a tmux session by name
|
|
66
|
-
- `list-windows` - List windows in a tmux session
|
|
67
|
-
- `list-panes` - List panes in a tmux window
|
|
68
|
-
- `capture-pane` - Capture content from a tmux pane with optional slicing (supports start/end offsets to walk full scrollback history)
|
|
69
67
|
- `create-session` - Create a new tmux session
|
|
70
|
-
- `create-window` - Create a new window in a tmux session
|
|
71
|
-
- `split-pane` - Split a tmux pane horizontally or vertically with optional size
|
|
72
68
|
- `kill-session` - Kill a tmux session by ID
|
|
69
|
+
- `list-windows` - List windows in a tmux session
|
|
70
|
+
- `create-window` - Create a new window in a tmux session
|
|
73
71
|
- `kill-window` - Kill a tmux window by ID
|
|
72
|
+
|
|
73
|
+
### Pane Management
|
|
74
|
+
- `list-panes` - List panes in a tmux window
|
|
75
|
+
- `capture-pane` - Capture content from a tmux pane
|
|
76
|
+
- `split-pane` - Split a tmux pane horizontally or vertically
|
|
74
77
|
- `kill-pane` - Kill a tmux pane by ID
|
|
75
|
-
|
|
78
|
+
|
|
79
|
+
### Command Execution
|
|
80
|
+
- `set-shell-type` - Configure the shell for command execution (bash, zsh, fish, tclsh)
|
|
76
81
|
- `execute-command` - Execute a command in a tmux pane
|
|
77
82
|
- `get-command-result` - Get the result of an executed command
|
|
83
|
+
- `wait-command-completion` - Poll until a command completes or timeout expires
|
|
84
|
+
- `grep-command-output` - Search completed command output using regex
|
package/build/index.js
CHANGED