Skip to main content

Add your description here

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file iflow_mcp_wangyihang_interactive_terminal_mcp-0.1.5.tar.gz.

File metadata

  • Download URL: iflow_mcp_wangyihang_interactive_terminal_mcp-0.1.5.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_wangyihang_interactive_terminal_mcp-0.1.5.tar.gz
Algorithm Hash digest
SHA256 007a6659b968f258079ecfb2f3c678e2582d243d602ee129f5448cedd3e3c608
MD5 c163d4715262783018fc0b5c4bcb2545
BLAKE2b-256 0250e8392a0392c1d2c43aed2ba0863c3409e1ec7cf009542e3da6162d8f9b46

See more details on using hashes here.

File details

Details for the file iflow_mcp_wangyihang_interactive_terminal_mcp-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: iflow_mcp_wangyihang_interactive_terminal_mcp-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_wangyihang_interactive_terminal_mcp-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 efda91ceeb4ba4fb21ea19059de47ac3c8e007de7eb50ad5460cb4348c268c34
MD5 20f779cedde85f53efcc0d007f91c284
BLAKE2b-256 c2b06daf2d33974fc1c3944fe65a24d3a89a5be552f31bf8883b1ef2ab52a274

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page