Description

Auralis Commander is a lightweight Windows-native MCP server built as an alternative to Desktop Commander, providing essential system operations through PowerShell and native Windows APIs. The implementation offers shell command execution with configurable shells (PowerShell, pwsh, cmd), comprehensive file operations (read, write, delete, move, edit), directory management, file and content search with ripgrep integration and PowerShell fallback, process management (list, kill), system information retrieval (CPU, memory, disk usage), and interactive process sessions for long-running commands. Designed specifically for Windows environments, it emphasizes reliability through structured error handling, configurable timeouts, and automatic cleanup of resources.

Installation

git clone https://github.com/antonpme/auralis-commander

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "auralis-commander": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}