Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.amol21p/interactive-terminal

NPM · MCP-INTERACTIVE-TERMINAL · SCANNED AUG 3

MCP server for real interactive terminal sessions — REPLs, SSH, databases, Docker

+42 this week 66 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security75
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (105 of 109), so this covers what we could see, not the whole tree.Partial
  • Install-script check failed: the install command fetches or executes arbitrary code (inline_eval). An install hook runs on every machine, in CI, and on transitive installs, whether or not you ever run the server. View diagnostics → Fail
  • Only part of the dependency tree could be resolved (105 of 109), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability77
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 595 tokens (~85/item across 7 items; 7 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · mcp-interactive-terminal

# add to Claude Code
claude mcp add amol21p-interactive-terminal -- npx -y mcp-interactive-terminal
# add to Codex CLI
codex mcp add amol21p-interactive-terminal -- npx -y mcp-interactive-terminal
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "amol21p-interactive-terminal": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "mcp-interactive-terminal"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add amol21p-interactive-terminal --command npx --arg -y --arg mcp-interactive-terminal
# ~/.hermes/config.yaml
mcp_servers:
  amol21p-interactive-terminal:
    command: "npx"
    args: ["-y", "mcp-interactive-terminal"]
// mcp.json
{
  "mcpServers": {
    "amol21p-interactive-terminal": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-interactive-terminal"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +60
    • Install scripts: unverified → fail security
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • The scripts that run when this package is installed changed: postinstall security
    • Security disclosure: fail → unverified functional
    • Schema quality: unverified → excellent functional
    • Tool coverage: unverified → 100 functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • Licence: MIT functional
  • 1 Aug 26 −23
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 31 Jul 26 −18
    • Malware scan: pass → unverified security
  • 28 Jul 26 +22
    • Tool coverage: unverified → 100 functional
    • First check of Schema quality: fail functional
    • First check of Schema quality: pass functional
    • First check of Schema quality: unverified functional
    • First check of Tool coverage: 100 functional
  • 27 Jul 26 24

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Install scripts 1 script
Hook Tier Command
postinstall dangerous node -e "try{require('fs').chmodSync(require('path').join(require.resolve('node-pty'),'..','..','prebuilds',process.platform+'-'+process.arch,'spawn-helper'),0o755)}catch{}"
Dependencies 105 packages

105 packages in the resolved dependency tree · 102 deprecated · 31 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 7 exposed · ~595 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
close_session ~49

Close/kill an interactive terminal session.

NameTypeReqDescription
session_idstringyesThe session ID to close
signalstringSignal to send (e.g., SIGTERM, SIGKILL)

No output schema declared.

No examples provided.

confirm_dangerous_command ~88

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.

NameTypeReqDescription
inputstringyesThe exact dangerous command to confirm and execute
justificationstringyesExplanation of WHY this dangerous command is necessary (min 10 chars)
session_idstringyesThe session ID

No output schema declared.

No examples provided.

create_session ~127

Spawn an interactive terminal session (REPL, shell, database client, SSH, etc.). Returns a session_id for subsequent commands.

NameTypeReqDescription
argsarrayArguments to pass to the command
colsnumberTerminal width in columns
commandstringyesThe command to spawn (e.g., 'python3', 'bash', 'psql')
cwdstringWorking directory for the session
envobjectAdditional environment variables
namestringHuman-readable session name
rowsnumberTerminal height in rows

No output schema declared.

No examples provided.

list_sessions ~20

List all active interactive terminal sessions. Safe read-only operation.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

read_output ~57

Read the current terminal screen without sending any input. Safe read-only operation.

NameTypeReqDescription
full_screenbooleanRead full scrollback history instead of just the visible screen
session_idstringyesThe session ID to read output from

No output schema declared.

No examples provided.

send_command ~115

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.

NameTypeReqDescription
inputstringyesThe command/input to send (newline appended automatically)
max_output_charsnumberOverride max output characters for this call
session_idstringyesThe session ID to send input to
timeout_msnumberMax time to wait for output (ms)

No output schema declared.

No examples provided.

send_control ~139

Send a control character or special key to a session (e.g., ctrl+c to interrupt, ctrl+d to send EOF, arrow keys, tab for completion).

NameTypeReqDescription
controlstringyesControl sequence to send. Supported: ctrl+a, ctrl+b, ctrl+c, ctrl+d, ctrl+e, ctrl+f, ctrl+k, ctrl+l, ctrl+n, ctrl+p, ctrl+r, ctrl+u, ctrl+w, ctrl+z, ctrl+\, ctrl+], enter, tab, escape, up, down, righ…
session_idstringyesThe session ID

No output schema declared.

No examples provided.