The lightweight Windows MCP server that does more with less.
We built Auralis Commander because existing solutions were either too heavy or too limited:
| MCP Server | Tools | Focus | Problem |
|---|---|---|---|
| Desktop Commander | 26 | Everything | Bloated, 5 tools just for processes |
| Filesystem (Anthropic) | 11 | Files only | No shell, no processes, no system info |
| Windows CLI | 8 | PowerShell | No file operations, limited scope |
Auralis Commander: 14 tools that cover shell, files, search, processes, and system β without the bloat.
One process_interactive tool replaces 5 separate tools in Desktop Commander:
start_processβprocess_interactive { action: "start" }read_process_outputβprocess_interactive { action: "read" }interact_with_processβprocess_interactive { action: "write" }force_terminateβprocess_interactive { action: "kill" }list_sessionsβprocess_interactive { action: "list" }
Read multiple files in one call:
file_read { paths: ["config.json", "package.json", ".env"] }
// Returns all files at once, errors don't block other filesOptimized for PowerShell and Windows workflows. No WSL required, no Unix assumptions.
~14KB of focused code. Fast startup, minimal memory footprint, smaller context window usage.
| Capability | Auralis | Desktop Commander | Filesystem | Windows CLI |
|---|---|---|---|---|
| Shell execution | β | β | β | β |
| File read/write | β | β | β | β |
| File search | β | β | β | β |
| Batch file read | β | β | β | β |
| Interactive processes | β | β | β | β |
| Process management | β | β | β | β |
| System info | β | β | β | β |
| Find & replace | β | β | β | β |
| Total tools | 14 | 26 | 11 | 8 |
| Context overhead | Low | High | Low | Low |
npm install -g auralis-commandergit clone https://github.com/antonpme/auralis-commander
cd auralis-commander
npm install
npm run buildAdd to your claude_desktop_config.json:
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"auralis-commander": {
"command": "node",
"args": ["C:/path/to/auralis-commander/dist/index.js"]
}
}
}Restart Claude Desktop to load the server.
| Tool | Description |
|---|---|
shell_exec |
Execute commands in pwsh, powershell, or cmd |
system_info |
Get CPU, memory, disk usage, and uptime |
processes |
List running processes with memory/CPU stats |
process_kill |
Terminate process by PID or name |
process_interactive |
Run and interact with long-running processes |
| Tool | Description |
|---|---|
file_read |
Read single file or batch with paths array |
file_write |
Write or append to file, auto-create directories |
file_edit |
Find and replace text in files |
file_delete |
Delete files or directories (with recursive flag) |
file_move |
Move or rename files and directories |
file_info |
Get metadata: size, dates, line count, permissions |
| Tool | Description |
|---|---|
dir_list |
List contents with depth control and glob patterns |
dir_create |
Create directory with parent directories |
search |
Search by filename or content with filtering |
// Start Next.js dev server
process_interactive {
action: "start",
command: "npm run dev",
cwd: "C:/projects/my-app"
}
// β { session_id: "a1b2c3", output: "ready on http://localhost:3000", is_running: true }
// Check for new output
process_interactive { action: "read", session_id: "a1b2c3", timeout_ms: 5000 }
// Stop when done
process_interactive { action: "kill", session_id: "a1b2c3" }process_interactive { action: "start", command: "python -u -i" } // -u: unbuffered, -i: interactive
// β { session_id: "x1y2z3", output: "Python 3.12.0\n>>>", is_running: true }
process_interactive { action: "write", session_id: "x1y2z3", input: "2 + 2\n" }
// β { output: "4\n>>>", is_running: true }
process_interactive { action: "write", session_id: "x1y2z3", input: "exit()\n" }
// β { output: "", is_running: false }file_read {
paths: [
"package.json",
"tsconfig.json",
".env",
".env.local"
]
}
// Returns all files; missing ones show error without blocking otherssystem_info {}
// β { cpu: { model, cores, usage }, memory: { total, used, free }, disks: [...], uptime: "3d 14h" }
processes { sort_by: "memory", limit: 10 }
// β Top 10 memory consumersCreate auralis-commander.json in your home directory for defaults:
{
"default_shell": "pwsh",
"default_cwd": "C:/Projects",
"max_file_read_mb": 50
}| Option | Default | Description |
|---|---|---|
default_shell |
pwsh |
Shell for commands: pwsh, powershell, or cmd |
default_cwd |
Home dir | Default working directory |
max_file_read_mb |
50 |
Maximum file size for reading |
auralis-commander/
βββ src/
β βββ index.ts # MCP server setup & tool registration
β βββ config.ts # Configuration management
β βββ tools/
β β βββ shell.ts # shell_exec
β β βββ files.ts # file_* and dir_* operations
β β βββ search.ts # Content and filename search
β β βββ processes.ts # Process listing and killing
β β βββ system.ts # System information
β β βββ interactive.ts # Interactive process sessions
β βββ utils/
β βββ powershell.ts # PowerShell execution wrapper
β βββ paths.ts # Path normalization
β βββ errors.ts # Error handling
βββ dist/ # Compiled JavaScript
βββ package.json
Issues and PRs welcome. Please:
- Keep tools focused β no feature creep
- Maintain Windows compatibility
- Test with Claude Desktop before submitting
MIT License β use it, modify it, ship it.