by nickgnd
A MCP server for our beloved terminal multiplexer tmux.
# Add to your Claude Code skills
git clone https://github.com/nickgnd/tmux-mcpGuides for using mcp servers skills like tmux-mcp.
Last scanned: 5/30/2026
{
"issues": [
{
"type": "npm-audit",
"message": "@modelcontextprotocol/sdk: Anthropic's MCP TypeScript SDK has a ReDoS vulnerability",
"severity": "high"
},
{
"type": "npm-audit",
"message": "express: Vulnerability found",
"severity": "medium"
},
{
"type": "npm-audit",
"message": "path-to-regexp: path-to-regexp vulnerable to Denial of Service via sequential optional groups",
"severity": "high"
},
{
"type": "npm-audit",
"message": "qs: qs's arrayLimit bypass in comma parsing allows denial of service",
"severity": "medium"
},
{
"type": "npm-audit",
"message": "uuid: uuid: Missing buffer bounds check in v3/v5/v6 when buf is provided",
"severity": "medium"
}
],
"status": "WARNING",
"scannedAt": "2026-05-30T15:08:49.342Z",
"npmAuditRan": true,
"pipAuditRan": true
}tmux-mcp is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by nickgnd. A MCP server for our beloved terminal multiplexer tmux. It has 296 GitHub stars.
tmux-mcp returned warnings in SkillsLLM's automated security scan. It has no critical vulnerabilities, but review the flagged issues in the Security Report section before adding it to your workflow.
Clone the repository with "git clone https://github.com/nickgnd/tmux-mcp" and add it to your Claude Code skills directory (see the Installation section above).
tmux-mcp is primarily written in JavaScript. It is open-source under nickgnd on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh tmux-mcp against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
Requires a passing catalog security scan. Resolve the flagged issues and resubmit to enable featuring.
Model Context Protocol server that enables Claude Desktop to interact with and view tmux session content. This integration allows AI assistants to read from, control, and observe your terminal sessions.
Check out this short video to get excited!
Add this MCP server to your Claude Desktop configuration:
"mcpServers": {
"tmux": {
"command": "npx",
"args": ["-y", "tmux-mcp"]
}
}
You can optionally specify the command line shell you are using, if unspecified it defaults to bash
"mcpServers": {
"tmux": {
"command": "npx",
"args": ["-y", "tmux-mcp", "--shell-type=fish"]
}
}
The MCP server needs to know the shell only when executing commands, to properly read its exit status.
tmux://sessions - List all tmux sessionstmux://pane/{paneId} - View content of a specific tmux panetmux://command/{commandId}/result - Results from executed commandslist-sessions - List all active tmux sessionsfind-session - Find a tmux session by namelist-windows - List windows in a tmux sessionlist-panes - List panes in a tmux windowcapture-pane - Capture content from a tmux panecreate-session - Create a new tmux sessioncreate-window - Create a new window in a tmux sessionsplit-pane - Split a tmux pane horizontally or vertically with optional sizekill-session - Kill a tmux session by IDkill-window - Kill a tmux window by IDkill-pane - Kill a tmux pane by IDexecute-command - Execute a command in a tmux paneget-command-result - Get the result of an executed command