1. Conduid
  2. Developer Tools
  3. Ssh Wingman
MCP server · Developer Tools

Ssh Wingman

MCP Server for providing read only access to your shell prompt

56Fair

Scored 23 hours ago · breakdown

About Ssh Wingman

Ssh Wingman is an MCP server published by conallob in the Developer Tools category: mCP Server for providing read only access to your shell prompt. It has been installed 0 times through Conduid.

The repository has 4 stars and 2 forks, with the last commit 10 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx mcp-ssh-wingman

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Ssh Wingman

Powered by Claude · Grounded in docs

I know everything about Ssh Wingman. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.0.13mcp-ssh-wingman v0.0.13 · 20 Jul 2026What's Changed docs: remove Go Report Card badge from README by @conallob in https://github.com/conallob/mcp-ssh-wingman/pull/4 Add coverage-tracked test workflow and Codecov integration by @conallob in…
v0.0.12mcp-ssh-wingman v0.0.12 · 19 Oct 2025What's Changed Instructions for Gemini CLI by @pallotron in https://github.com/conallob/mcp-ssh-wingman/pull/2 Flesh out the documentation and add unittests Improve error checking to avoid MCP server generating errors on startup, when…
v0.0.11mcp-ssh-wingman v0.0.11 · 10 Oct 2025Additional release, to test goreleaser config tweaks and homebrew tap configuration Full Changelog**: https://github.com/conallob/mcp-ssh-wingman/compare/v0.0.10...v0.0.11

README

MCP SSH Wingman

A Model Context Protocol (MCP) server that provides read-only access to Unix shell prompts via tmux. This enables AI assistants like Claude to safely observe terminal environments without executing commands.

Features

  • 🔒 Read-only access - Observe terminal content without execution risks
  • 🖥️ tmux integration - Leverages tmux's session management for reliable terminal access
  • 📜 Scrollback history - Access historical terminal output
  • 📊 Terminal metadata - Retrieve dimensions, current path, and session info
  • 🔌 MCP protocol - Standard protocol for AI assistant integration

FAQ

Will you be adding GNU screen support?

Not in the immediate future. Although screen can be used for pair programming/debugging, it does not have any mechanism to enforce read only mode.

Since the read-only safeguard is the main difference between this MCP and other MCPs with ssh functionality , screen will need to support read-only sessions before it can be integrated

Will you be adding zellij support?

In the future, possibly. https://github.com/zellij-org/zellij/issues/4348 needs to be implemented first, to ensure zellij has read-only functionality, just like tmux

Prerequisites

  • tmux (for terminal session management)
  • (Optional) Go 1.21 or later (only needed for building from source)

Installation

Homebrew (macOS/Linux)

brew tap conallob/tap
brew install mcp-ssh-wingman

Pre-built binaries

Download pre-built binaries from the releases page.

Available for:

  • macOS (arm64/amd64)
  • Linux (arm64/amd64)
  • FreeBSD (arm64/amd64)

Build from source

See DEVELOPMENT.md for build instructions.

Usage

Running the server

# Start with default tmux session name (mcp-wingman)
mcp-ssh-wingman

# Use a custom tmux session name
mcp-ssh-wingman --session my-session

# Show version
mcp-ssh-wingman --version

Integration with Claude Desktop

Add the server to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "ssh-wingman": {
      "command": "/usr/local/bin/mcp-ssh-wingman",
      "args": ["--session", "mcp-wingman"]
    }
  }
}

Restart Claude Desktop after updating the configuration.

Integration with Gemini CLI

Add this section to your Gemini config file (~/.gemini/settings.json):

{
  "mcpServers": {
    "ssh-wingman": {
      "command": "/usr/local/bin/mcp-ssh-wingman",
      "args": ["--session", "mcp-wingman"]
    }
  }
}

Run the gemini CLI and make sure it can see the MCP server:

> /mcp list

Configured MCP servers:

🟢 ssh-wingman - Ready (3 tools)
  Tools:
  - get_terminal_info
  - read_scrollback
  - read_terminal

Test with a prompt:

> using ssh-wingman MCP Server, what do you see in my session?

 ╭────────────────────────────────────────────────────────────────────────────────────────╮
 │ ?  read_terminal (ssh-wingman MCP Server) {} ←                                         │
 │                                                                                        │
 │   MCP Server: ssh-wingman                                                              │
 │   Tool: read_terminal                                                                  │
 │                                                                                        │
 │ Allow execution of MCP tool "read_terminal" from server "ssh-wingma…                   │
 │                                                                                        │
 │ ● 1. Yes, allow once                                                                   │
 │   2. Yes, always allow tool "read_terminal" from server "ssh-wingma…                   │
 │   3. Yes, always allow all tools from server "ssh-wingman"                             │
 │   4. No, suggest changes (esc)                                                         │
 │                                                                                        │
 ╰────────────────────────────────────────────────────────────────────────────────────────╯
⠏ Waiting for user confirmation...

You might as well select option 3 there.

Available Tools

The server exposes the following MCP tools:

read_terminal

Read the current terminal content from the tmux session.

Example:

{
  "name": "read_terminal"
}

read_scrollback

Read scrollback history from the tmux session.

Parameters:

  • lines (number): Number of lines to retrieve from scrollback buffer

Example:

{
  "name": "read_scrollback",
  "arguments": {
    "lines": 100
  }
}

get_terminal_info

Get information about the terminal (dimensions, current path, etc.).

Example:

{
  "name": "get_terminal_info"
}

Available Resources

terminal://current

Current terminal content as a text resource.

terminal://info

Terminal metadata and information.

How It Works

The server creates or attaches to a tmux session and uses tmux's built-in commands to safely read terminal content:

  1. Session Management: Creates/attaches to a detached tmux session
  2. Content Capture: Uses tmux capture-pane to read visible content
  3. Read-Only: Never sends keystrokes or commands to the session
  4. MCP Protocol: Exposes terminal content via standard MCP tools and resources

This approach ensures that the AI assistant can observe terminal activity without any risk of accidentally executing commands or modifying the terminal state.

Use Cases

  • Monitor long-running processes and build outputs
  • Observe terminal-based application behavior
  • Debug issues by reviewing terminal history
  • Provide context-aware assistance based on current terminal state

Security Considerations

MCP SSH Wingman is designed with security in mind:

  • Read-only: The server never sends input to the terminal
  • Local access: Operates on local tmux sessions only
  • No command execution: Cannot execute shell commands
  • Isolated sessions: Each session is independent and sandboxed by tmux

Troubleshooting

Server won't start

  • Ensure tmux is installed: tmux -V
  • Check that the binary has execute permissions: chmod +x /usr/local/bin/mcp-ssh-wingman

Claude Desktop can't connect

  • Verify the path to the binary in your configuration file
  • Check Claude Desktop logs for error messages
  • Ensure the binary runs successfully from command line first

Can't see terminal content

  • Verify the tmux session exists: tmux list-sessions
  • Ensure the session name matches the one specified in configuration
  • Check that the tmux session has active panes

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.

For development guidelines, see DEVELOPMENT.md.

README mirrored from the source repository 23 hours ago. The original is authoritative.

Questions

About Ssh Wingman

How do I install Ssh Wingman?

Run npx mcp-ssh-wingman, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Ssh Wingman safe to use with an AI agent?

Its trust score is 56 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Ssh Wingman still maintained?

Yes — the latest release is v0.0.13 (20 Jul 2026), and the last commit was 10 months ago. The repository has 4 stars and 0 open issues.