VOOZH about

URL: https://mcp.so/server/cmd-explain/zmwaiworld

โ‡ฑ CLI Command Explainer MCP Server


CLI Command Explainer

@zmwaiworld

Know what every shell command does before you approve it.
Overview

cmd-explain

Know what every shell command does โ€” before you approve it.
MCP server for AI coding agents ยท Works with Kiro, Cursor, VS Code, Windsurf, Claude Code

Quick Start ยท How It Works ยท Supported IDEs ยท Local AI


The Problem

AI coding agents run shell commands on your machine. They show an approval dialog, but you're left guessing:

Agent wants to run: curl -sL https://raw.githubusercontent.com/some-tool/install.sh | sudo bash
 [ Approve ] [ Deny ]

Is that safe? What does -sL mean? Why sudo? Most people either blindly approve (dangerous) or Google it (slow, breaks flow).

The Fix

cmd-explain intercepts every shell command before it runs and shows you a plain-English explanation with a risk rating:

๐Ÿ”ด Transfer data from or to a URL (silent, follow redirects),
 then GNU Bourne-Again SHell
 Risk: high ยท Source: built-in
Agent wants to run: curl -sL https://raw.githubusercontent.com/some-tool/install.sh | sudo bash
 [ Approve ] [ Deny ]

Now you know: it silently downloads a script and pipes it to bash with root privileges. That's a one-line rootkit vector. Easy deny โ€” or at least worth inspecting first.

More Examples

Commands that agents actually suggest โ€” and that you'd probably approve without thinking:

๐Ÿ”ด chmod -R 777 .
 Change file permissions (recursive)
 Risk: high ยท Source: built-in
 โ†’ Makes every file in your project world-writable
๐ŸŸก curl -sL https://install.example.com | bash
 Transfer data from or to a URL (silent, follow redirects),
 then GNU Bourne-Again SHell
 Risk: medium ยท Source: built-in
 โ†’ Downloads and executes a remote script. Classic supply chain risk.
๐Ÿ”ด git push origin main --force
 Upload local commits to a remote (force push, set upstream)
 Risk: high ยท Source: built-in
 โ†’ Overwrites remote history. Other people's commits may be lost.
๐Ÿ”ด rm -rf node_modules dist .next .cache && npm ci
 Remove files or directories (recursive, force without confirmation),
 then clean install from lockfile
 Risk: high ยท Source: built-in
๐ŸŸก npx prisma db push --accept-data-loss
 Run a command from a local or remote npm package without installing
 Risk: medium ยท Source: built-in
 โ†’ That --accept-data-loss flag means exactly what it says.
๐Ÿ”ด kubectl exec -it prod-db-0 -- psql -c "DROP TABLE users"
 Execute a command in a container
 Risk: high ยท Source: built-in
 โ†’ Running SQL directly on a production pod.

Every explanation includes:

  • What it does in plain English, including flags and shell patterns (2>&1, || true, >/dev/null)
  • Risk level โ€” low (read-only), medium (state-changing), high (destructive), or unknown
  • Source โ€” built-in (241-command dictionary), system (man pages), or ai-generated (LLM)

Quick Start

npx cmd-explain setup

That's it. Auto-detects your IDE, installs the MCP server, creates the pre-command hook. Restart your IDE and you're protected.

Requirements: Node.js 18+. No API keys, no Ollama, no config files to edit.

How It Works

cmd-explain is an MCP server with one tool: explain_command. When your agent is about to run a shell command, a pre-command hook calls this tool automatically.

Explanations come from three tiers, checked in order:

TierSourceSpeedCoverageNeeds Setup?
1Built-in dictionary โ€” 240+ programs with 440+ command explanations (git, docker, npm, kubectl, terraform, aws, brew, cargo, and more)<1ms~90% of agent commandsNo
2System man pages โ€” parses whatis output for any installed CLI tool~50msMost installed toolsNo
3Local AI โ€” Ollama, OpenAI, or Anthropic for anything tiers 1โ€“2 miss~1sEverythingOptional

Tiers 1 and 2 are fully offline with zero dependencies. Tier 3 is opt-in.

Shell Pattern Detection

cmd-explain understands shell syntax that agents commonly use:

PatternAnnotation
2>&1redirect stderr to stdout
>/dev/null 2>&1suppress all output
2>/dev/nullsuppress error output
|| trueignore exit code
set -eexit on error
set -xprint commands before execution
set -o pipefailfail on any pipe segment error
$(...)command substitution

These are appended to the explanation so you always know what the full command is doing.

Risk Classification

LevelMeaningExamples
๐ŸŸข lowRead-only, no side effectsls, cat, grep, git status, curl GET
๐ŸŸก mediumState-changing but reversiblegit commit, npm install, mkdir, docker build
๐Ÿ”ด highDestructive or irreversiblerm -rf, docker rm -f, terraform destroy, find -delete
โšช unknownNot recognizedCustom/proprietary CLIs

Supported IDEs

One setup command handles everything. Each IDE gets the right hook format automatically.

IDEHook EventShell Coverage
KiropreToolUseโœ… All shell commands
VS Code CopilotPreToolUseโœ… All shell commands
CursorbeforeShellExecutionโœ… Dedicated shell hook
Windsurfpre_run_commandโœ… Dedicated shell hook
Claude CodePreToolUseโœ… Via matcher
npx cmd-explain setup # Auto-detect all IDEs
npx cmd-explain setup --ide kiro # Target one IDE
npx cmd-explain setup --no-hooks # MCP server only

Optional: Local AI

For commands not in the dictionary or man pages, enable local AI explanations powered by Ollama (~1GB one-time download):

brew install ollama
brew services start ollama
ollama pull qwen2.5-coder:1.5b
npx cmd-explain setup --ollama qwen2.5-coder:1.5b

The setup command validates each step โ€” if Ollama isn't installed or the model isn't pulled, it tells you exactly what to run.

Cloud APIs also work:

npx cmd-explain setup --openai-key sk-...

Supported providers: Ollama, OpenAI (OPENAI_API_KEY), Anthropic (ANTHROPIC_API_KEY).

Manual Install

Add to your IDE's MCP config:

{
 "mcpServers": {
 "cmd-explain": {
 "command": "npx",
 "args": ["-y", "cmd-explain"]
 }
 }
}

Config locations:

  • Kiro: .kiro/settings/mcp.json
  • VS Code: .vscode/mcp.json
  • Cursor: .cursor/mcp.json
  • Windsurf: ~/.codeium/windsurf/mcp_config.json
  • Claude Code: ~/.claude/settings.json

Uninstall

npx cmd-explain uninstall

Removes the MCP config and hook files from all detected IDEs. Clean removal, nothing left behind.

Platform Support

macOSLinuxWindows
Dictionary (Tier 1)โœ…โœ…โœ…
Man pages (Tier 2)โœ…โœ…โš ๏ธ --help only
Local AI (Tier 3)โœ…โœ…โœ…
Setup CLIโœ…โœ…โœ…

License

MIT

Server Config

{
 "mcpServers": {
 "cmd-explain": {
 "command": "npx",
 "args": [
 "-y",
 "cmd-explain"
 ]
 }
 }
}
ยฉ 2025 MCP.so. All rights reserved.

Build with ShipAny.