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.
npx agentmods add skills/echoqili/ssh-licco/ssh-mcp-devnpx skills add Echoqili/ssh-licco --skill ssh-mcp-devgit clone --depth 1 https://github.com/Echoqili/ssh-liccoWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00035 | $0.03623 |
| Opus 5 | $0.00017 | $0.01811 |
| Sonnet 5 | $0.00007 | $0.00725 |
| Haiku 4.5 | $0.00003 | $0.00362 |
Grade B, and why
ssh-mcp-dev scanned grade B with 1 finding 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 2d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- Check server SSH service: `sudo systemctl status sshd` How it starts
The opening of the file, as written. The whole thing — 361 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SSH MCP Server Development Guide
Project Overview
- Project Name: ssh-licco
- Description: SSH Model Context Protocol Server - Enable SSH functionality for AI models
- Repository: https://github.com/Echoqili/ssh-licco
- Current Version: 2.7.2 (stored in
ssh_mcp/__init__.py) - Python: >=3.10, <3.14
- License: MIT
Project Structure
ssh-mcp/
├── ssh_mcp/ # Main source code
│ ├── __init__.py # Version info (main version file)
│ ├── server.py # MCP server implementation (SSHMCPServer)
│ ├── service.py # SSH service protocol & connection info
│ ├── config_manager.py # Config file management (hosts.json)
│ ├── session_manager.py # SSH session lifecycle management
│ ├── connection_config.py # Pydantic connection config model
│ ├── connection_pool.py # Connection pool with health check
│ ├── executor.py # Thread pool executor (async bridge)
│ ├── batch_executor.py # Batch command execution across hosts
│ ├── key_manager.py # SSH key pair generation (RSA/Ed25519)
│ ├── security.py # Multi-level security (command/path validation)
│ ├── audit_logger.py # Structured audit logging
│ ├── logging_config.py # Centralized logging (SSHLogger singleton)
│ ├── watchdog.py # Task monitoring & health check
│ ├── exceptions.py # Custom exception hierarchy
│ ├── cli.py # Python entry point (simplified to only start server)
│ └── clients/ # SSH client implementations
│ ├── __init__.py # Exports: SSHClientInterface, ClientType, etc.
│ ├── interface.py # Abstract base class + data models
│ ├── factory.py # Client factory with registration
│ ├── paramiko_client.py # Paramiko implementation
│ └── additional_clients.py # AsyncSSH/Fabric/SSH2 (optional)
├── ssh-licco.js # Node.js wrapper - auto-install + integrity check + startup
├── install.js # npm postinstall script - incremental install
├── smart_install.py # Standalone diagnostic installer with SSH test
├── config/ # Runtime configuration
│ ├── hosts.json # SSH host configurations
│ ├── mcp.user.config.json.example
│ ├── mcp.presets.json
│ └── ssh-hosts.example.json
├── .github/workflows/
│ ├── pypi.yml # PyPI release workflow
│ └── mcp-registry.yml # MCP Registry publish workflow
├── openspec/ # OpenSpec specifications
│ └── specs/ # Feature specs
├── docs/ # Documentation
│ ├── API_REFERENCE.md
│ ├── CONTRIBUTING.md
│ └── skills/ # Skill documentation copies
├── pyproject.toml # Package configuration
├── sync_version.py # Version sync script (syncs all version files)
└── .trae/skills/ # Trae IDE skills
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.
- 2d ago First seen · 361 lines · 35 tokens per session scan B 99521449f59b
ssh-mcp-dev is a skill published in the GitHub repository Echoqili/ssh-licco (3 stars, last pushed 14d ago), licensed MIT. It adds 35 tokens to every session and 3,623 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
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…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
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…