Loading connector details…
Loading connector details…
Choose a unique username to continue using AgentHotspot
by SimonB97 • Tools & CLI
A deprecated MCP server for secure command-line interactions on Windows.
Perform remote command execution on Windows systems via CLI.
Securely manage SSH connections and execute shell commands.
Control multiple Windows command-line interfaces from a central point.
The Windows CLI MCP Server facilitates secure command-line interactions on Windows systems, providing controlled access to shells like PowerShell, CMD, Git Bash, and remote systems via SSH. It allows MCP clients to perform operations such as executing commands and managing SSH connections. The server is configurable with various security settings to restrict command access and ensure safe usage.
Execute a command in the specified shell (powershell, cmd, or gitbash) Example usage (PowerShell): ```json { "shell": "powershell", "command": "Get-Process | Select-Object -First 5", "workingDir": "C:\Users\username" } ``` Example usage (CMD): ```json { "shell": "cmd", "command": "dir /b", "workingDir": "C:\Projects" } ``` Example usage (Git Bash): ```json { "shell": "gitbash", "command": "ls -la", "workingDir": "/c/Users/username" } ```
Get the history of executed commands Example usage: ```json { "limit": 5 } ``` Example response: ```json [ { "command": "Get-Process", "output": "...", "timestamp": "2024-03-20T10:30:00Z", "exitCode": 0 } ] ```
Execute a command on a remote host via SSH Example usage: ```json { "connectionId": "raspberry-pi", "command": "uname -a" } ``` Configuration required in config.json: ```json { "ssh": { "enabled": true, "connections": { "raspberry-pi": { "host": "raspberrypi.local", "port": 22, "username": "pi", "password": "raspberry" } } } } ```
Disconnect from an SSH server Example usage: ```json { "connectionId": "raspberry-pi" } ``` Use this to cleanly close SSH connections when they're no longer needed.
Create a new SSH connection
The current working directory of the CLI server
All SSH connection configurations
Main CLI server configuration (excluding sensitive data)
Scores are informational only and provided “as is” without warranty. AgentHotspot assumes no liability for actions taken based on these ratings.