# Windows Command Line MCP Server

Enable AI models to interact with Windows command-line functionality securely and efficiently. Execute commands, create projects, and retrieve system information while maintaining strict security pro…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add alxspiker/Windows-Command-Line-MCP-Server

# Browse available tools
npx -y @smithery/cli@latest tool list alxspiker/Windows-Command-Line-MCP-Server

# Get full schema for a tool
npx -y @smithery/cli@latest tool get alxspiker/Windows-Command-Line-MCP-Server list_running_processes

# Call a tool
npx -y @smithery/cli@latest tool call alxspiker/Windows-Command-Line-MCP-Server list_running_processes '{}'
```

## Tools (8)

- `list_running_processes` — List all running processes on the system. Can be filtered by providing an optional filter string that will match agains…
- `get_system_info` — Retrieve system information including OS, hardware, and user details. Can provide basic or full details.
- `get_network_info` — Retrieve network configuration information including IP addresses, adapters, and DNS settings. Can be filtered to a spe…
- `get_scheduled_tasks` — Retrieve information about scheduled tasks on the system. Can query all tasks or get detailed status of a specific task.
- `get_service_info` — Retrieve information about Windows services. Can query all services or get detailed status of a specific service.
- `list_allowed_commands` — List all commands that are allowed to be executed by this server. This helps understand what operations are permitted.
- `execute_command` — Execute a Windows command and return its output. Only commands in the allowed list can be executed. This tool should be…
- `execute_powershell` — Execute a PowerShell script and return its output. This allows for more complex operations and script execution. PowerS…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get alxspiker/Windows-Command-Line-MCP-Server <tool-name>
```

---

Source: https://github.com/alxspiker/Windows-Command-Line-MCP-Server | License: MIT
