Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.IMRRD/powershell-mcp

NPM · POWERSHELL-MCP · SCANNED AUG 3

Headless Windows ops over MCP: hidden PowerShell + in-process SSH, WinRM & SFTP.

Available components

+24 this week 70 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (103 of 107), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (103 of 107), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability77
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 1004 tokens (~111/item across 9 items; 9 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · powershell-mcp

# add to Claude Code
claude mcp add imrrd-powershell-mcp -- npx -y powershell-mcp
# add to Codex CLI
codex mcp add imrrd-powershell-mcp -- npx -y powershell-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "imrrd-powershell-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "powershell-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add imrrd-powershell-mcp --command npx --arg -y --arg powershell-mcp
# ~/.hermes/config.yaml
mcp_servers:
  imrrd-powershell-mcp:
    command: "npx"
    args: ["-y", "powershell-mcp"]
// mcp.json
{
  "mcpServers": {
    "imrrd-powershell-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "powershell-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +1
    • Security disclosure: unverified → fail functional
  • 2 Aug 26 +48
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Tool coverage: 100 → unverified functional
    • Security disclosure: fail → unverified functional
    • Schema quality: unverified → excellent functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • First check of Schema quality: unverified functional
    • Licence: MIT functional
  • 31 Jul 26 −25
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 103 packages

103 packages in the resolved dependency tree · 103 deprecated · 34 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 9 exposed · ~1,004 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
control_service ~48

Start, stop, or restart a Windows service (requires the MCP host process to have sufficient privileges).

NameTypeReqDescription
actionstringyesAction to perform.
namestringyesExact service name.

No output schema declared.

No examples provided.

get_service ~32

Get detailed status of one Windows service by name.

NameTypeReqDescription
namestringyesExact service name (not display name).

No output schema declared.

No examples provided.

list_services ~50

List Windows services, optionally filtered by a name pattern. Returns Name, DisplayName, Status.

NameTypeReqDescription
filterstringWildcard name filter, e.g. 'Sql*' or '*backup*'.

No output schema declared.

No examples provided.

run_powershell ~91

Run a PowerShell script/command on this Windows host in a hidden process (no console window appears). Returns stdout, stderr and exit code. Use for any Windows command, file, or system task.

NameTypeReqDescription
cwdstringWorking directory.
scriptstringyesPowerShell script or command to execute.
timeoutMsintegerHard timeout in ms (default 60000).

No output schema declared.

No examples provided.

sftp_download ~170

Download a file from a remote host to this Windows host over SFTP, in-process (ssh2 — no scp.exe, no WSL, headless).

NameTypeReqDescription
hoststringyesRemote host or IP.
localPathstringyesDestination path on this Windows host.
passphrasestringPassphrase for the private key, if any.
passwordstringPassword auth (used if no key).
portintegerSSH port (default 22).
privateKeyPathstringPath to a private key file on this Windows host.
remotePathstringyesSource path on the remote host.
timeoutMsintegerHard timeout in ms (default 120000).
usernamestringyesSSH username.

No output schema declared.

No examples provided.

sftp_upload ~178

Upload a local file to a remote host over SFTP, in-process (ssh2 — no scp.exe, no WSL, headless). Use to deploy scripts/configs to Linux hosts.

NameTypeReqDescription
hoststringyesRemote host or IP.
localPathstringyesLocal file path on this Windows host.
passphrasestringPassphrase for the private key, if any.
passwordstringPassword auth (used if no key).
portintegerSSH port (default 22).
privateKeyPathstringPath to a private key file on this Windows host.
remotePathstringyesDestination path on the remote host.
timeoutMsintegerHard timeout in ms (default 120000).
usernamestringyesSSH username.

No output schema declared.

No examples provided.

ssh_exec ~246

Run a command on a remote host over SSH, fully in-process (no ssh.exe, no WSL — works headless). Use for Linux hosts or any OpenSSH target. Auth via privateKeyPath or password. Returns stdout, stderr, exit code.

NameTypeReqDescription
commandstringyesCommand to run on the remote host.
hoststringyesRemote host or IP.
maxOutputBytesintegerCap captured stdout/stderr per stream (bytes, default 1 MiB).
passphrasestringPassphrase for the private key, if any.
passwordstringPassword auth (used if no key).
portintegerSSH port (default 22).
privateKeyPathstringPath to a private key file on this Windows host, e.g. C:\\Users\\isak\\.ssh\\id_ed25519.
tailbooleanKeep the LAST maxOutputBytes instead of the first (tail) — useful for long logs.
timeoutMsintegerHard timeout in ms (default 60000). Also bounds the connection handshake.
usernamestringyesSSH username.

No output schema declared.

No examples provided.

system_info ~22

Return OS, CPU, memory and disk summary for this Windows host.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

winrm_exec ~167

Run a command on a remote Windows host via PowerShell Remoting (WinRM / Invoke-Command). Native to Windows Server — no SSH server or agent needed on the target, only WinRM enabled. Output captured in-process (no console window).

NameTypeReqDescription
authenticationstringWinRM auth mechanism.
commandstringyesPowerShell command/scriptblock body to run remotely.
computerNamestringyesRemote Windows host name or IP.
passwordstringCredential password.
timeoutMsintegerHard timeout in ms (default 120000).
useSslbooleanUse HTTPS/5986 WinRM.
usernamestringCredential username (DOMAIN\\user or host\\user). Omit to use the host process identity.

No output schema declared.

No examples provided.