iTerm MCP is a Model Context Protocol server that provides AI models with direct access to your iTerm terminal session. It enables models to execute commands, read terminal output, and interact with REPLs and command-line interfaces. With iTerm MCP, AI assistants can help you navigate complex terminal workflows, debug issues in real-time, and interact with command-line tools while you observe each step. The server is designed with minimal dependencies and efficient token usage, making it ideal for integration with Claude Desktop and other MCP clients.
iTerm MCP creates a bridge between AI models and your active iTerm terminal session, allowing models to execute commands and interact with your terminal environment. This enables powerful use cases like guided debugging, REPL assistance, and automated terminal workflows.
Create or edit the Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
Add the following server configuration:
{
"mcpServers": {
"iterm-mcp": {
"command": "npx",
"args": [
"-y",
"iterm-mcp"
]
}
}
}
You can use Smithery to automatically install iTerm MCP for Claude Desktop:
npx -y @smithery/cli install iterm-mcp --client claude
Writes text to the active iTerm terminal, typically used to run commands.
Returns: The number of lines of output produced by the command.
Reads the specified number of lines from the active iTerm terminal.
Parameters:
Sends a control character to the active iTerm terminal.
Parameters:
You can ask the model to:
For developers interested in modifying or debugging the server:
git clone https://github.com/ferrislucas/iterm-mcp.git
yarn install
yarn run build
yarn run watch
Since MCP servers communicate over stdio, debugging can be challenging. The project includes support for the MCP Inspector:
yarn run inspector
yarn debug <command>
The Inspector will provide a URL to access debugging tools in your browser.