@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 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
- - `set-shell-type` - Configure the shell used for command execution (supports bash, zsh, fish, tclsh). Provide a paneId to override a single pane, or omit to adjust the default.
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
@@ -7,7 +7,7 @@ import * as tmux from "./tmux.js";
7
7
  // Create MCP server
8
8
  const server = new McpServer({
9
9
  name: "tmux-mcp",
10
- version: "0.3.1" // Keep in sync with package.json
10
+ version: "0.3.3" // Keep in sync with package.json
11
11
  }, {
12
12
  capabilities: {
13
13
  resources: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arearseth/tmux-mcp",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "MCP Server for interfacing with tmux sessions",
5
5
  "type": "module",
6
6
  "main": "build/index.js",