Skip to main content

Interactive Terminal MCP

English | 中文

A Model Context Protocol (MCP) server that provides stateful, interactive terminal access.

Unlike standard command execution tools that run in isolation, this server allows LLMs to spawn persistent processes (like ssh, ipython, or gdb), maintain session context, and interact with shells via standard input/output streams.

Why use this MCP?

Standard command execution tools usually run in isolation (stateless). This MCP server allows for persistent sessions (stateful), which is critical for remote management and debugging tools.

Side-by-Side Comparison

Scenario Without this MCP (Stateless) With Interactive-Terminal-MCP (Stateful)
1. Remote SSH Session Context Lost: Must reconnect for every command.

> ssh user@host "cd /var/www" (exits)
> ssh user@host "ls" (starts in home dir)
Context Preserved: Maintains one connection.

1. spawn_process(["ssh", "user@host"])
2. send_command(id, "cd /var/www")
3. send_command(id, "ls") -> index.php
2. Interactive Debugging Unsupported: Cannot handle interactive prompts or wait for specific output patterns. Supported: Can drive interactive tools.

1. spawn_process(["gdb", "./binary"])
2. send_command(id, "break main")
3. send_command(id, "run")

Features

  • Stateful Sessions: Environment variables, working directories, and process states persist between commands.
  • Interactive Support: Specifically designed for REPLs and interactive CLIs that require continuous input.
  • Output Control: Supports waiting for specific output patterns (regex) to ensure commands complete before returning.
  • Session Management: Handle multiple concurrent terminal sessions.
  • History: Access full session logs via MCP resources.

Usage

Running Directly

uvx interactive-terminal-mcp

Integration with Claude Code

You can add this server to Claude Code uvx.

Using pipx:

claude mcp add --transport stdio interactive-terminal-mcp -- uvx interactive-terminal-mcp

Manual Configuration (claude_config.json):

{
  "mcpServers": {
    "interactive-terminal": {
      "command": "uvx",
      "args": ["interactive-terminal-mcp"]
    }
  }
}

Available Tools

spawn_process

Starts a new interactive process.

  • Arguments:
    • command (List[str]): The command to run (e.g., ["bash"], ["python3", "-i"]).
  • Returns: session_id (str)

send_command

Sends input to an active session and waits for output.

  • Arguments:
    • session_id (str): The target session ID.
    • cmd (str): The command string to send.
    • wait_for (str, optional): Regex pattern to wait for (e.g., \$\s*). Defaults to a short timeout if not provided.
    • timeout (int, optional): Maximum time to wait in seconds.

read_buffer

Reads any pending output from the session buffer without sending new commands.

  • Arguments: session_id (str)

kill_session

Terminates a specific session.

  • Arguments: session_id (str)

Resources

  • cli://{session_id}/history: Retrieves the full interaction history (inputs and outputs) for a specific session.

Roadmap

  • Session Recording: Support saving interaction logs in standard formats (e.g., asciinema) for replay and auditing.
  • Human Intervention: Enable mechanisms for users to pause, terminate, or manually intervene in active shell sessions managed by the Agent.

[!WARNING] Security Warning: This tool provides full terminal access to the connected LLM. The LLM will have the same permissions as the user running the MCP server. Use only in trusted environments or sandboxed containers (e.g., Docker) to prevent unauthorized system modifications.

Release files for interactive-terminal-mcp 0.1.5

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for interactive-terminal-mcp 0.1.5
File Size Uploaded
interactive_terminal_mcp-0.1.5.tar.gz 5.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for interactive-terminal-mcp 0.1.5
File Interpreter ABI Platform
interactive_terminal_mcp-0.1.5-py3-none-any.whl Python 3 none any Details

Total release size: 10.8 kB

Release files / interactive_terminal_mcp-0.1.5.tar.gz

Download URL interactive_terminal_mcp-0.1.5.tar.gz
Size 5.1 kB
Tags Source
SHA-256 checksum
How to use checksums
e2d81bf1d3539eb983bc0f82ff334bfc476ad09d9318807b1f39bb49c2ce2969
BLAKE2b-256 checksum
How to use checksums
7b6a35ccefac36c457ae37bfa1aea4349e8b2f1be03750654b1af8d4c6116a89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / interactive_terminal_mcp-0.1.5-py3-none-any.whl

Download URL interactive_terminal_mcp-0.1.5-py3-none-any.whl
Size 5.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
5754fc96985ef65556cdeadc2011409fbf0bed956935becfa7dc46cc3153fa64
BLAKE2b-256 checksum
How to use checksums
997cdcea1e89e36ed1ad71a81293042dce7c1543bff8b9b8914ed583cd7dfc4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

This release

0.1.5 This release

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

0.0.4

2 release files

0.0.3

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page