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
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
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 61 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
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
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
claude mcp add imrrd-powershell-mcp -- npx -y powershell-mcp
codex mcp add imrrd-powershell-mcp -- npx -y powershell-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"imrrd-powershell-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"powershell-mcp"
],
"enabled": true
}
}
} openclaw mcp add imrrd-powershell-mcp --command npx --arg -y --arg powershell-mcp
mcp_servers:
imrrd-powershell-mcp:
command: "npx"
args: ["-y", "powershell-mcp"] {
"mcpServers": {
"imrrd-powershell-mcp": {
"command": "npx",
"args": [
"-y",
"powershell-mcp"
]
}
}
} 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.
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.
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.
control_service ~48
Start, stop, or restart a Windows service (requires the MCP host process to have sufficient privileges).
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | Action to perform. |
| name | string | yes | Exact service name. |
No output schema declared.
No examples provided.
get_service ~32
Get detailed status of one Windows service by name.
| Name | Type | Req | Description |
|---|---|---|---|
| name | string | yes | Exact 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.
| Name | Type | Req | Description |
|---|---|---|---|
| filter | string | — | Wildcard 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.
| Name | Type | Req | Description |
|---|---|---|---|
| cwd | string | — | Working directory. |
| script | string | yes | PowerShell script or command to execute. |
| timeoutMs | integer | — | Hard 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).
| Name | Type | Req | Description |
|---|---|---|---|
| host | string | yes | Remote host or IP. |
| localPath | string | yes | Destination path on this Windows host. |
| passphrase | string | — | Passphrase for the private key, if any. |
| password | string | — | Password auth (used if no key). |
| port | integer | — | SSH port (default 22). |
| privateKeyPath | string | — | Path to a private key file on this Windows host. |
| remotePath | string | yes | Source path on the remote host. |
| timeoutMs | integer | — | Hard timeout in ms (default 120000). |
| username | string | yes | SSH 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.
| Name | Type | Req | Description |
|---|---|---|---|
| host | string | yes | Remote host or IP. |
| localPath | string | yes | Local file path on this Windows host. |
| passphrase | string | — | Passphrase for the private key, if any. |
| password | string | — | Password auth (used if no key). |
| port | integer | — | SSH port (default 22). |
| privateKeyPath | string | — | Path to a private key file on this Windows host. |
| remotePath | string | yes | Destination path on the remote host. |
| timeoutMs | integer | — | Hard timeout in ms (default 120000). |
| username | string | yes | SSH 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.
| Name | Type | Req | Description |
|---|---|---|---|
| command | string | yes | Command to run on the remote host. |
| host | string | yes | Remote host or IP. |
| maxOutputBytes | integer | — | Cap captured stdout/stderr per stream (bytes, default 1 MiB). |
| passphrase | string | — | Passphrase for the private key, if any. |
| password | string | — | Password auth (used if no key). |
| port | integer | — | SSH port (default 22). |
| privateKeyPath | string | — | Path to a private key file on this Windows host, e.g. C:\\Users\\isak\\.ssh\\id_ed25519. |
| tail | boolean | — | Keep the LAST maxOutputBytes instead of the first (tail) — useful for long logs. |
| timeoutMs | integer | — | Hard timeout in ms (default 60000). Also bounds the connection handshake. |
| username | string | yes | SSH 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).
| Name | Type | Req | Description |
|---|---|---|---|
| authentication | string | — | WinRM auth mechanism. |
| command | string | yes | PowerShell command/scriptblock body to run remotely. |
| computerName | string | yes | Remote Windows host name or IP. |
| password | string | — | Credential password. |
| timeoutMs | integer | — | Hard timeout in ms (default 120000). |
| useSsl | boolean | — | Use HTTPS/5986 WinRM. |
| username | string | — | Credential username (DOMAIN\\user or host\\user). Omit to use the host process identity. |
No output schema declared.
No examples provided.