Tmux MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| tmux_list_sessionsA | List all active tmux sessions. Returns information about each session including:
Use this tool to discover available sessions before operating on them. |
| tmux_create_sessionA | Create a new tmux session. Args:
The session is created in detached mode. Use this to start new working environments. |
| tmux_kill_sessionA | Kill (terminate) a tmux session and all its windows/panes. Args:
WARNING: This will terminate all processes running in the session. |
| tmux_list_windowsA | List all windows in a tmux session. Args:
Returns information about each window including index, name, active status, and pane count. |
| tmux_create_windowB | Create a new window in a tmux session. Args:
|
| tmux_kill_windowA | Kill (close) a window in a tmux session. Args:
WARNING: This will terminate all processes running in the window. |
| tmux_list_panesA | List all panes in a tmux window. Args:
Returns information about each pane including index, dimensions, and current command. |
| tmux_split_windowA | Split a window into panes. Args:
|
| tmux_kill_paneA | Kill (close) a pane in a tmux window. Args:
WARNING: This will terminate the process running in the pane. |
| tmux_send_keysA | Send keys or commands to a tmux pane. Args:
Examples:
|
| tmux_capture_paneA | Capture the visible content or history of a tmux pane. Args:
This tool is useful for reading command output or checking the state of a pane. |
| tmux_select_windowB | Switch to a specific window in a tmux session. Args:
|
| tmux_select_paneB | Switch to a specific pane in a tmux window. Args:
|
| tmux_rename_sessionA | Rename an existing tmux session. Args:
|
| tmux_rename_windowB | Rename a window in a tmux session. Args:
|
| tmux_resize_paneB | Resize a pane in a tmux window. Args:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 16 tools
Each tool has a clearly distinct purpose targeting specific tmux operations with no overlap. For example, tmux_capture_pane reads content, tmux_send_keys inputs commands, and tmux_kill_pane/ tmux_kill_window/ tmux_kill_session handle different termination scopes, making misselection unlikely.
All tools follow a consistent tmux_verb_noun pattern with snake_case throughout. The naming is predictable and readable, such as tmux_list_sessions, tmux_create_window, and tmux_rename_session, without any deviations in style.
With 16 tools, the count is slightly high but reasonable for comprehensive tmux management, covering sessions, windows, panes, and interactions. It's well-scoped for the domain, though it borders on the heavier side without being excessive.
The tool set provides complete CRUD/lifecycle coverage for tmux operations, including creation, listing, modification, interaction, and termination of sessions, windows, and panes. No obvious gaps exist, enabling agents to perform full workflows without dead ends.