npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

claude-coder-mac-mcp

v1.0.2

Published

MCP server to spawn Claude Code instances in iTerm2

Downloads

199

Readme

claude-coder-mac-mcp

An MCP server that allows Claude Desktop to spawn new Claude Code instances in iTerm2 windows.

Features

  • spawn_claude_coder: Spawn a new Claude Code instance with a given prompt

    • Opens a new iTerm2 window
    • Optionally runs with --dangerously-skip-permissions (must be enabled on server)
    • Passes your prompt directly to Claude
    • The terminal becomes fully interactive
  • list_iterm_windows: List all iTerm2 windows and sessions

Requirements

Installation

Via npm (recommended)

npm install -g claude-coder-mac-mcp

From source

git clone https://github.com/pm990320/claude-coder-mac-mcp.git
cd claude-coder-mac-mcp
npm install
npm run build

Verify installation

claude-coder-mac-mcp check

This runs environment checks to verify macOS, iTerm2, Claude Code CLI, and automation permissions are all configured correctly.

CLI Usage

The CLI has multiple commands:

# Show help
claude-coder-mac-mcp --help

# Start the MCP server (used by Claude Desktop)
# By default, spawned Claude instances run in normal mode (user must approve actions)
claude-coder-mac-mcp mcp

# Start the MCP server with --dangerously-skip-permissions enabled
# WARNING: This allows spawned Claude instances to run without user approval
claude-coder-mac-mcp mcp --dangerously-skip-permissions

# Test spawning a Claude Code instance directly (normal mode)
claude-coder-mac-mcp spawn "Help me write a REST API"
claude-coder-mac-mcp spawn "Fix the tests" -d ~/myproject -t "Test Fixer"

# Test spawning with --dangerously-skip-permissions
claude-coder-mac-mcp spawn "Fix the tests" --dangerously-skip-permissions

# List current iTerm2 windows
claude-coder-mac-mcp list

# Check environment is configured correctly
claude-coder-mac-mcp check

Claude Desktop Configuration

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

Normal mode (user must approve Claude Code actions):

{
  "mcpServers": {
    "claude-coder-mac": {
      "command": "node",
      "args": ["/path/to/claude-coder-mac-mcp/dist/index.js", "mcp"]
    }
  }
}

With --dangerously-skip-permissions (Claude Code runs autonomously):

{
  "mcpServers": {
    "claude-coder-mac": {
      "command": "node",
      "args": ["/path/to/claude-coder-mac-mcp/dist/index.js", "mcp", "--dangerously-skip-permissions"]
    }
  }
}

Usage with Claude Desktop

Once configured, you can ask Claude Desktop to spawn new Claude Code instances:

"Start a new Claude coder to work on my project at ~/myproject with the task: implement user authentication"

Claude will use the spawn_claude_coder tool to open iTerm2 with a new Claude Code session.

Permissions

On first use, macOS will ask you to grant automation permissions. Go to:

System Settings > Privacy & Security > Automation

And ensure the app running the MCP server (e.g., Claude Desktop) has permission to control iTerm2.

MCP Tool Parameters

spawn_claude_coder

| Parameter | Required | Description | |-----------|----------|-------------| | prompt | Yes | The task/prompt to give to Claude Code | | workingDirectory | No | Directory to run Claude Code in (defaults to ~) | | windowTitle | No | Custom title for the iTerm2 window |

Note: Whether --dangerously-skip-permissions is passed to spawned Claude instances is controlled by the server startup flag, not by tool parameters.

list_iterm_windows

No parameters. Lists all open iTerm2 windows and their sessions.

Development

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

# Lint
npm run lint

# Fix lint issues
npm run fix

# Type check
npm run typecheck

Project Structure

src/
├── index.ts    # CLI entrypoint (uses commander)
├── server.ts   # MCP server setup and tool registration
├── spawn.ts    # Core spawn functionality
├── iterm.ts    # iTerm2 AppleScript utilities
└── check.ts    # Environment verification checks

tests/
├── spawn.test.ts   # Unit tests for spawn functions
└── iterm.test.ts   # Unit tests for iTerm utilities

The modules are separated for testability - spawn.ts and iterm.ts contain pure functions that can be unit tested independently.

License

MIT