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

mcp-server-ssh-tools

v1.0.2

Published

一个基于MCP框架的SSH工具服务器,提供远程服务器管理功能。

Readme

MCP SSH 工具服务器

一个基于MCP框架的SSH工具服务器,提供远程服务器管理功能。

功能特性

  • 支持多服务器配置管理
  • 提供SSH连接池管理
  • 支持文件上传/下载(包括递归目录操作)
  • 支持远程命令执行
  • 可通过环境变量或代码配置服务器

安装

  1. 使用uv安装Python 3.13+:
uv pip install --python=3.13
  1. 安装项目依赖:
uv pip install "mcp[cli]"
uv pip install  requests  paramiko
  1. (可选) 使用uv创建虚拟环境:
uv venv .venv
source .venv/bin/activate  # Linux/Mac
.venv\Scripts\activate     # Windows
  1. 下载代码:
git clone https://github.com/nwnusun-cool/mcp-server-ssh-tools.git

配置

使用json文件配置服务器,示例:

{
  "mcpServers": {
    "ssh_sun": {
      "command": "uv",
      "args": [
        "--directory",
        "F:\\仓库\\产品\\mcp-server-ssh-tools",
        "run",
        "main.py"
      ],
      "env": {
        "SSH_IP": "192.168.2.127",
        "SSH_USER": "root",
        "SSH_PASSWORD": "123456",
        "SSH_PORT": "22"
      }
    }
  }
}

使用

API接口

  • execute: 执行远程命令
  • download_file: 下载远程文件/目录
  • upload_file: 上传本地文件/目录
  • list_directory: 列出远程目录内容
  • test_connection: 测试服务器连接

依赖

  • mcp[cli]>=1.10.1
  • paramiko>=3.5.1
  • pyyaml>=6.0.2
  • requests>=2.32.4

开发

# 安装开发依赖
pip install -e ".[dev]"

# 运行测试
pytest

许可证

MIT