ssh-mcp-helper

ssh-mcp-helper is a skill for Claude Code, Codex from wijzeu/ssh-mcp-server. It costs 110 tokens per session (2,353 once invoked), scanned A, a copy of ssh-mcp-helper, ISC.

A guided setup helper for ssh-mcp-server, which lets an MCP client connect to remote computers over SSH. SSH is a way to securely run commands on another computer.

In plain words
What is it for?
Use it to install or configure an SSH connection for Cursor, Claude Code, Cline, Continue, or another MCP client, including adding remote hosts.
Why use it?
It avoids manually working out connection settings, authentication, security limits, and client configuration.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for cline. Also seen: reads .claude/ paths; names the AskUserQuestion tool; mentions Claude Code.

Good fit Use it to install or configure an SSH connection for Cursor, Claude Code, Cline, Continue, or another MCP client, including adding remote hosts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wijzeu/ssh-mcp-server/ssh-mcp-helper
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add wijzeu/ssh-mcp-server --skill ssh-mcp-helper
Clone the repo
git clone --depth 1 https://github.com/wijzeu/ssh-mcp-server

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ssh-mcp-helper

README.md
[![agentmods](https://agentmods.dev/badge/skills/wijzeu/ssh-mcp-server/ssh-mcp-helper.svg)](https://agentmods.dev/skills/wijzeu/ssh-mcp-server/ssh-mcp-helper)
Your own site
<a href="https://agentmods.dev/skills/wijzeu/ssh-mcp-server/ssh-mcp-helper"><img src="https://agentmods.dev/badge/skills/wijzeu/ssh-mcp-server/ssh-mcp-helper.svg" alt="Measured on agentmods" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,353 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00110 $0.02353
Opus 5 $0.00055 $0.01177
Sonnet 5 $0.00022 $0.00471
Haiku 4.5 $0.00011 $0.00235

Measured 7d ago against content hash f93a31bf4fd1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

ssh-mcp-helper scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to ssh-mcp-helper — 4 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/ssh-mcp-helper/SKILL.md · 167 lines

How it starts

The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ssh-mcp-helper

概述

帮助用户通过交互式问答完成 @fangjunjie/ssh-mcp-server 的安装预检与 MCP 客户端配置。技能本身不代替用户输入凭据,而是逐项确认认证方式、连接参数与安全策略,最终产出可直接写入 MCP 客户端配置文件的 mcpServers JSON 片段。

核心准则: 所有可枚举的选项(MCP 客户端类型、认证方式、传输模式、是/否开关)必须使用 AskUserQuestion 让用户选择;只有不可枚举的输入(host、用户名、私钥路径、密码、自定义白名单正则等)才允许自由文本提问。

何时使用

  • 用户明确要安装/配置/新增 ssh-mcp-server
  • 用户提到为 Cursor / Claude Code / Cline / Continue 等客户端添加 SSH MCP
  • 用户希望在已有 mcpServers 中追加一台 SSH 主机
  • 用户问「ssh-mcp-server 的 mcp.json 怎么写」

何时不使用

  • 用户要修改 ssh-mcp-server 源码 → 直接编辑代码,不进入向导
  • 用户只是想跑某条 SSH 命令 → 直接调用已存在的 ssh-mcp-server 工具
  • 用户在问 SSH 协议本身的概念 → 解释即可,无需走流程

工作流程

digraph ssh_mcp_helper {
    "0. 前置环境检查" [shape=box];
    "1. 选择 MCP 客户端" [shape=box];
    "2. 单台 vs 多台" [shape=diamond];
    "3. 选择认证方式" [shape=box];
    "4. 询问连接参数" [shape=box];
    "5. 询问高级选项" [shape=box];
    "6. 生成 JSON 片段" [shape=box];
    "7. 合并写入配置" [shape=box];
    "8. 提示重启与验证" [shape=doublecircle];

    "0. 前置环境检查" -> "1. 选择 MCP 客户端";
    "1. 选择 MCP 客户端" -> "2. 单台 vs 多台";
    "2. 单台 vs 多台" -> "3. 选择认证方式" [label="单台"];
    "2. 单台 vs 多台" -> "3. 选择认证方式" [label="多台 → 写 ssh-config.json"];
    "3. 选择认证方式" -> "4. 询问连接参数";
    "4. 询问连接参数" -> "5. 询问高级选项";
    "5. 询问高级选项" -> "6. 生成 JSON 片段";
    "6. 生成 JSON 片段" -> "7. 合并写入配置";
    "7. 合并写入配置" -> "8. 提示重启与验证";
}

Step 0:前置环境检查

  • 运行 node -vnpx --version 确认本机有 Node.js(推荐 v18+)
  • 缺失则先提示用户安装 Node.js,再继续后续步骤

Step 1:选择 MCP 客户端(AskUserQuestion 多选一)

客户端 默认配置位置
Claude Code(全局) ~/.claude.jsonmcpServers 字段
Claude Code(项目级) 项目根 .mcp.json
Cursor ~/.cursor/mcp.json
Cline / Continue / 其他 让用户提供具体路径

Step 2:单台 vs 多台(AskUserQuestion 二选一)

  • 单台:直接使用命令行参数(--host 等)
  • 多台:生成 ssh-config.json 并使用 --config-file

Step 3:选择认证方式(AskUserQuestion 多选一)

  • password — 账号 + 密码
  • privateKey — 账号 + 私钥;再用 AskUserQuestion 确认是否带 passphrase
  • ssh-config — 复用 ~/.ssh/config 中的 Host 别名(只需 --host <alias>,可选 --ssh-config-file
  • ssh-agent — 使用 --agent 指向 socket
  • 2fa — 密码 + 私钥 + 键盘交互,追加 --try-keyboard

Read the full file on GitHub · 167 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 167 lines · 110 tokens per session scan A f93a31bf4fd1

Subscribe to this mod's changes

ssh-mcp-helper is a skill published in the GitHub repository wijzeu/ssh-mcp-server (0 stars, last pushed 1mo ago), licensed ISC. It adds 110 tokens to every session and 2,353 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to ssh-mcp-helper, differing in 4 lines, and is treated as a copy.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens