1.2.6npm · iterm-mcp · current release
Observed 2026-08-15T20:21:29.692Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2024-11-05.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
read_terminal_outputReads the output from the active iTerm terminalInput schema{
"type": "object",
"properties": {
"linesOfOutput": {
"type": "integer",
"description": "The number of lines of output to read."
}
},
"required": [
"linesOfOutput"
]
} | — | — · — | — |
send_control_characterSends a control character to the active iTerm terminal (e.g., Control-C, or special sequences like ']' for telnet escape)Input schema{
"type": "object",
"properties": {
"letter": {
"type": "string",
"description": "The letter corresponding to the control character (e.g., 'C' for Control-C, ']' for telnet escape)"
}
},
"required": [
"letter"
]
} | — | — · — | — |
write_to_terminalWrites text to the active iTerm terminal - often used to run a command in the terminalInput schema{
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "The command to run or text to write to the terminal"
}
},
"required": [
"command"
]
} | — | — · — | — |