https://github.com/ferrislucas/iterm-mcp
A Model Context Protocol server that executes commands in the current iTerm session - useful for REPL and CLI assistance
https://github.com/ferrislucas/iterm-mcp
ai claude claude-ai mcp mcp-server repl
Last synced: 5 days ago
JSON representation
A Model Context Protocol server that executes commands in the current iTerm session - useful for REPL and CLI assistance
- Host: GitHub
- URL: https://github.com/ferrislucas/iterm-mcp
- Owner: ferrislucas
- License: mit
- Created: 2025-01-09T04:49:23.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-29T04:31:12.000Z (19 days ago)
- Last Synced: 2025-04-12T03:51:57.932Z (5 days ago)
- Topics: ai, claude, claude-ai, mcp, mcp-server, repl
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/iterm-mcp
- Size: 1.19 MB
- Stars: 251
- Watchers: 3
- Forks: 14
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-mcp-zh - iTerm MCP
- awesome-mcp-servers - ferrislucas/iterm-mcp - iTermへのアクセスを提供するモデルコンテキストプロトコルサーバー。コマンドを実行し、iTermターミナルで見た内容について質問することができます。 (サーバー実装 / 💻 <a name="developer-tools"></a>開発者ツール)
- awesome-mcp-list - ferrislucas/iterm-mcp - mcp?style=social)](https://github.com/ferrislucas/iterm-mcp): Provides iTerm2 terminal access for command execution and output analysis. (Uncategorized / Uncategorized)
- awesome-mcp-servers - ferrislucas/iterm-mcp - A Model Context Protocol server that provides access to iTerm. You can run commands and ask questions about what you see in the iTerm terminal. (Legend / 🖥️ <a name="command-line"></a>Command Line)
- awesome-mcp-servers - ferrislucas/iterm-mcp - A Model Context Protocol server that provides access to iTerm. You can run commands and ask questions about what you see in the iTerm terminal. (Legend / 🖥️ <a name="command-line"></a>Command Line)
- awesome-mcp-servers - iTerm MCP - A Model Context Protocol server that executes commands in the current iTerm session - useful for REPL and CLI assistance (Table of Contents / Command Line)
- awesome-mcp-servers - iTerm MCP - A Model Context Protocol server that executes commands in the current iTerm session - useful for REPL and CLI assistance (Table of Contents / Command Line)
README
# iterm-mcp
A Model Context Protocol server that provides access to your iTerm session.
### Features
**Efficient Token Use:** iterm-mcp gives the model the ability to inspect only the output that the model is interested in. The model typically only wants to see the last few lines of output even for long running commands.
**Natural Integration:** You share iTerm with the model. You can ask questions about what's on the screen, or delegate a task to the model and watch as it performs each step.
**Full Terminal Control and REPL support:** The model can start and interact with REPL's as well as send control characters like ctrl-c, ctrl-z, etc.
**Easy on the Dependencies:** iterm-mcp is built with minimal dependencies and is runnable via npx. It's designed to be easy to add to Claude Desktop and other MCP clients. It should just work.
## Safety Considerations
* The user is responsible for using the tool safely.
* No built-in restrictions: iterm-mcp makes no attempt to evaluate the safety of commands that are executed.
* Models can behave in unexpected ways. The user is expected to monitor activity and abort when appropriate.
* For multi-step tasks, you may need to interrupt the model if it goes off track. Start with smaller, focused tasks until you're familiar with how the model behaves.### Tools
- `write_to_terminal` - Writes to the active iTerm terminal, often used to run a command. Returns the number of lines of output produced by the command.
- `read_terminal_output` - Reads the requested number of lines from the active iTerm terminal.
- `send_control_character` - Sends a control character to the active iTerm terminal.### Requirements
* iTerm2 must be running
* Node version 18 or greater## Installation
To use with Claude Desktop, add the server config:
On macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
On Windows: `%APPDATA%/Claude/claude_desktop_config.json````json
{
"mcpServers": {
"iterm-mcp": {
"command": "npx",
"args": [
"-y",
"iterm-mcp"
]
}
}
}
```### Installing via Smithery
To install iTerm for Claude Desktop automatically via [Smithery](https://smithery.ai/server/iterm-mcp):
```bash
npx -y @smithery/cli install iterm-mcp --client claude
```
[](https://smithery.ai/server/iterm-mcp)## Development
Install dependencies:
```bash
yarn install
```Build the server:
```bash
yarn run build
```For development with auto-rebuild:
```bash
yarn run watch
```### Debugging
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:
```bash
yarn run inspector
yarn debug
```The Inspector will provide a URL to access debugging tools in your browser.