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

iterminal-mcp-server

v2.0.0

Published

MCP Server for iTerminal SSH Connection Manager - Control SSH servers through Claude and other AI assistants

Readme

iTerminal MCP Server

MCP Server for iTerminal SSH Connection Manager - Control SSH servers through Claude and other AI assistants.

Features

  • 🔌 SSH Connection Management - Create, test, and manage SSH connections
  • 💻 Command Execution - Execute commands on remote servers
  • 📊 System Monitoring - Real-time CPU, memory, disk metrics
  • 📁 File Operations - List directories, create folders, rename/delete files
  • 🤖 AI Integration - Works with Claude Desktop and other MCP clients

Installation

Via npx (Recommended)

npx iterminal-mcp-server

Via npm

npm install -g iterminal-mcp-server
iterminal-mcp

Configuration

OpenCode (推荐)

OpenCode 是一款强大的 AI 编程助手,支持 MCP 协议。配置步骤:

  1. 打开配置文件 ~/.config/opencode/opencode.jsonc
  2. mcp 字段中添加 iTerminal 配置:
{
  "mcp": {
    "iterminal": {
      "type": "local",
      "command": ["npx", "iterminal-mcp-server"],
      "enabled": true
    }
  }
}
  1. 重启 OpenCode 生效

配置说明:

| 字段 | 说明 | |------|------| | type | 固定为 "local",表示本地 MCP 服务器 | | command | 启动命令,使用 npx 直接运行 npm 包 | | enabled | 是否启用该 MCP 服务器 |

Claude Desktop

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

{
  "mcpServers": {
    "iterminal": {
      "command": "npx",
      "args": ["iterminal-mcp-server"]
    }
  }
}

Cursor / Windsurf

在 AI 设置中添加 MCP 服务器:

{
  "mcpServers": {
    "iterminal": {
      "command": "npx",
      "args": ["iterminal-mcp-server"]
    }
  }
}

Prerequisites

  • iTerminal desktop app must be running with the HTTP API enabled on port 27149
  • Node.js 18+ (for npx)
  • SSH credentials for your servers

Available Tools

| Tool | Description | |------|-------------| | iter_status | Check iTerminal API service status | | iter_connect | Create SSH connection | | iter_disconnect | Disconnect SSH connection | | iter_test_connection | Test SSH connection without persisting | | iter_list_connections | List all active SSH connections | | iter_exec | Execute command on remote server | | iter_monitor | Get system metrics (CPU/memory/disk) | | iter_list_dir | List remote directory contents | | iter_mkdir | Create directory on remote server | | iter_rm | Delete file on remote server | | iter_rename | Rename file or directory |

Usage Examples

Once configured with Claude, you can use natural language:

"Connect to my production server at 192.168.1.100"
"Check the CPU usage on the connected server"
"List files in /var/log"
"Run 'docker ps' on the server"
"Create a new directory /tmp/myapp"

API Reference

The MCP server connects to iTerminal's local HTTP API at http://127.0.0.1:27149.

Connection Management

// Connect
{
  id: "my-server",
  host: "192.168.1.100",
  port: 22,
  username: "root",
  password: "********"
}

// Execute command
{
  id: "my-server",
  command: "docker ps"
}

// Monitor system
{
  id: "my-server"
}

File Operations

// List directory
{
  id: "my-server",
  path: "/var/log"
}

// Create directory
{
  id: "my-server",
  path: "/tmp/newdir"
}

// Rename
{
  id: "my-server",
  old_path: "/tmp/old.txt",
  new_path: "/tmp/new.txt"
}

Development

# Install dependencies
npm install

# Build
npm run build

# Development mode
npm run dev

# Run locally
node dist/index.js

Architecture

┌─────────────────┐      ┌─────────────────┐      ┌─────────────────┐
│   Claude/AI     │─────►│  MCP Server     │─────►│ iTerminal API   │
│                 │ MCP  │  (this package) │ HTTP │  (port 27149)   │
└─────────────────┘      └─────────────────┘      └─────────────────┘
                                                          │
                                                          │ SSH
                                                          ▼
                                                  ┌─────────────────┐
                                                  │  Remote Server  │
                                                  └─────────────────┘

Related

License

MIT