Connection check
local install
interactive-terminal
MCP server for real interactive terminal sessions — REPLs, SSH, databases, Docker
Tools
7
GitHub stars
18
Installs / wk
84
Licence
MIT
Transport
stdio
Last checked
never
Tools & capabilities
7 toolsRead from the published package source — this server runs locally, so there is no endpoint to query. Names are taken from the code, not observed at runtime, and descriptions are often absent.
close_session
from source
Close/kill an interactive terminal session. Close/kill an interactive terminal session.
confirm_dangerous_command
from source
Execute a command that was flagged as dangerous by send_command. Requires a justification explaining WHY the command is necessary. This is a separate confirmation step for safety. Execute a command that was flagged as dangerous by send_command. Requires a justification explaining WHY the command is necessary. This is a separate confirmation step for safety.
create_session
from source
Spawn an interactive terminal session (REPL, shell, database client, SSH, etc.). Returns a session_id for subsequent commands. Spawn an interactive terminal session (REPL, shell, database client, SSH, etc.). Returns a session_id for subsequent commands.
list_sessions
from source
List all active interactive terminal sessions. Safe read-only operation. List all active interactive terminal sessions. Safe read-only operation.
read_output
from source
Read the current terminal screen without sending any input. Safe read-only operation. Read the current terminal screen without sending any input. Safe read-only operation.
send_command
from source
Send a command/input to an interactive session and wait for output. Appends newline automatically. Returns clean text output (no ANSI codes). If a dangerous command is detected, yo… Send a command/input to an interactive session and wait for output. Appends newline automatically. Returns clean text output (no ANSI codes). If a dangerous command is detected, you must use confirm_dangerous_command first.
send_control
from source