1. Conduid
  2. Developer Tools
  3. Tabby MCP Server
MCP server · Developer Tools

Tabby MCP Server

MCP server for control Tabby terminal

Unclaimed MIT last commit a year ago devtools
59Fair

Scored yesterday · breakdown

About Tabby MCP Server

Tabby MCP Server is an MCP server published by thuanpham582002 in the Developer Tools category: mCP server for control Tabby terminal. It has been installed 0 times through Conduid.

The repository has 64 stars and 6 forks, with the last commit a year 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 tabby-mcp-server

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 Tabby MCP Server

Powered by Claude · Grounded in docs

I know everything about Tabby MCP Server. 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

v1.0.3Release v1.0.3 · 2 Jun 2026Highlights Merged PR #9 — adds SSE heartbeat keep-alive and dead-connection cleanup to prevent proxy/NAT timeouts. Published to npm as `tabby-mcp@1.0.3`. PR https://github.com/thuanpham582002/tabby-mcp-server/pull/9
v1.0.2Release v1.0.2 · 1 Jun 2026Highlights Publishes the current stable package to npm as `tabby-mcp@1.0.2`. Fixes `get_ssh_session_list` no-argument MCP tool registration. Simplifies command execution markers for cleaner output and reliable exit-code parsing. Refreshes…
v1.0.0Release v1.0.0 · 1 Jun 2026Highlights Promotes Tabby MCP Server to the first stable release. Fixes no-argument MCP tool registration for `get_ssh_session_list`. Simplifies command execution markers for cleaner output and reliable exit-code parsing. Refreshes the…
v0.0.2Release v0.0.2 · 28 Jun 2025Release v0.0.2 🚀 Features 🤖 **AI Connection**: Seamlessly connect AI assistants to your terminal 🔌 **MCP Server**: Built-in Model Context Protocol server implementation 🖥️ **Terminal Control**: Allow AI to execute commands and read…
v0.0.1Release v0.0.1 · 14 Apr 2025Release v0.0.1 🚀 Features 🤖 **AI Connection**: Seamlessly connect AI assistants to your terminal 🔌 **MCP Server**: Built-in Model Context Protocol server implementation 🖥️ **Terminal Control**: Allow AI to execute commands and read…

README

🚀 Tabby-MCP-Server

npm version GitHub issues GitHub stars

Powerful Tabby plugin that implements Model Context Protocol (MCP) server, enabling AI-powered terminal control and automation.

Plugin for Tabby Terminal - a modern, highly configurable terminal emulator.

📹 Video Demo

Watch the full video demonstration of Tabby-MCP in action:

Tabby MCP Plugin - AI Terminal Integration Demo

✨ Features

  • 🤖 AI Connection: Seamlessly connect AI assistants to your terminal
  • 🔌 MCP Server: Built-in Model Context Protocol server implementation
  • 🖥️ Terminal Control: Allow AI to execute commands and read terminal output
  • 🔍 Session Management: View and manage SSH sessions
  • 🚫 Command Abort: Safely abort running commands
  • 📋 Buffer Access: Retrieve terminal buffer content with flexible options
  • 🔒 Pair Programming Mode: Optional confirmation dialog before command execution
  • 📊 Command History: Track and review previously executed commands
  • 🔄 Command Output Storage: Paginated access to complete command outputs

📋 Table of Contents

🔧 Installation

Install from Tabby Plugin Store

  1. Go to Tabby settings → Plugins → MCP
  2. Click "Install" on the Tabby MCP plugin
  3. Restart Tabby
  4. Configure your AI client to connect to the MCP server (see Connecting to MCP)

Using Docker

You can build and install the plugin using Docker with the following command:

git clone https://github.com/thuanpham582002/tabby-mcp-server.git
cd tabby-mcp-server
# Build the Docker image
docker build -t tabby-mcp . && docker run -v $(pwd)/build:/output tabby-mcp
bash scripts/copy_to_plugin_folder.sh

This command builds a Docker image tagged as 'tabby-mcp' and runs a container from this image, mounting your local 'build' directory to '/output' in the container. The script scripts/copy_to_plugin_folder.sh will copy the built files to the Tabby plugin folder.

🚀 Quick Start

  1. Install the plugin using one of the methods above
  2. Start Tabby and navigate to Settings → Plugins → MCP
  3. Configure the MCP server port (default: 3001)
  4. Toggle "Start on Boot" to automatically start the server when Tabby launches
  5. Connect to the MCP server from any supported AI client listed at https://modelcontextprotocol.io/clients

💻 Usage Examples

Connect an AI to Control Your Terminal

  1. Start Tabby with the MCP plugin enabled
  2. Configure your AI client to connect to the MCP server (see Connecting to MCP)
  3. Ask your AI assistant to run commands or manage your terminal sessions

Example AI prompt:

Connect to my Tabby MCP server and list all available terminal sessions.
Then execute the command "ls -la" in the first available terminal.

🔗 Connecting to MCP

To configure AI clients to use your MCP server, add the following to your ~/.cursor/mcp.json file:

STDIO mode:

{
  "mcpServers": {
    "Tabby MCP": {
      "command": "npx",
      "args": [
        "-y",
        "tabby-mcp-stdio",
        "--port",
        "3001"
      ]
    }
  }
}

SSE mode:

{
  "mcpServers": {
    "Tabby MCP": {
      "type": "sse",
      "url": "http://localhost:3001/sse"
    }
  }
}

Select your preferred MCP server in your AI client settings. The Tabby MCP plugin must be running for the "Tabby MCP" (SSE) option to work, while the STDIO and Docker options will start their own server instances.

⚙️ Configuration in Tabby Setting

Configure the MCP server through the Tabby settings:

{
  "mcp": {
    "port": 3001,
    "host": "http://localhost:3001",
    "enableLogging": false,
    "startOnBoot": true,
    "pairProgrammingMode": {
      "enabled": true,
      "showConfirmationDialog": true,
      "autoFocusTerminal": true
    }
  }
}

Pair Programming Mode

The plugin includes a "Pair Programming Mode" that adds safety features when AI assistants control your terminal:

  • Confirmation Dialog: Prompt user before executing commands
  • Auto Focus Terminal: Automatically focus terminal when commands are executed
  • Command Rejection: Ability to reject commands with feedback

To enable Pair Programming Mode:

  1. Go to Tabby settings → Plugins → MCP
  2. Toggle "Enable Pair Programming Mode"
  3. Configure additional safety options as needed

📚 API Reference

Available Tools

Tool Description Parameters
get_ssh_session_list Get list of all terminal sessions None
exec_command Execute a command in terminal command, tabId, commandExplanation
get_terminal_buffer Get terminal content tabId, startLine, endLine
get_command_output Retrieve complete command output outputId, startLine, maxLines

🤝 Contributing

Contributions are welcome! Here's how you can help:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/your-feature)
  3. Commit your changes (git commit -m 'Add your feature')
  4. Push to the branch (git push origin feature/your-feature)
  5. Open a Pull Request

See the contributing guidelines for more details.

Development Workflow

  1. Clone the repository and install dependencies:

    git clone https://github.com/thuanpham582002/tabby-mcp-server.git
    cd tabby-mcp-server
    npm install
    
  2. Make your changes to the codebase

  3. Build the plugin:

    docker build -t tabby-mcp . && docker run -v $(pwd)/build:/output tabby-mcp
    
  4. Test the plugin with Tabby:

    bash scripts/copy_to_plugin_folder.sh
    

📝 License

This project is licensed under the MIT License - see the LICENSE file for details.


README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Tabby MCP Server

How do I install Tabby MCP Server?

Run npx tabby-mcp-server, 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 Tabby MCP Server safe to use with an AI agent?

Its trust score is 59 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 Tabby MCP Server still maintained?

Yes — the latest release is v1.0.3 (2 Jun 2026), and the last commit was a year ago. The repository has 64 stars and 0 open issues.