Auralis Commander

Auralis Commander

A lightweight Windows-native MCP server providing a consolidated suite of 14 tools for shell execution, file operations, and interactive process management. It optimizes efficiency through batch file operations and smart process handling to minimize context window overhead.

Category
Visit Server

README

Auralis Commander

The lightweight Windows MCP server that does more with less.

Tools Platform License

Why Auralis Commander?

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.

Key Advantages

šŸŽÆ Smart Design

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" }

šŸ“¦ Batch Operations

Read multiple files in one call:

file_read { paths: ["config.json", "package.json", ".env"] }
// Returns all files at once, errors don't block other files

⚔ Windows-Native

Optimized for PowerShell and Windows workflows. No WSL required, no Unix assumptions.

🪶 Lightweight

~14KB of focused code. Fast startup, minimal memory footprint, smaller context window usage.

Tool Comparison

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

Installation

Option 1: npm (recommended)

npm install -g auralis-commander

Option 2: Clone and Build

git clone https://github.com/antonpme/auralis-commander
cd auralis-commander
npm install
npm run build

Claude Desktop Configuration

Add 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.

Tools Reference

Shell & System

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

Files

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

Directories & Search

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

Usage Examples

Run a Dev Server

// 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" }

Interactive Python REPL

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 }

Batch Configuration Check

file_read { 
  paths: [
    "package.json",
    "tsconfig.json", 
    ".env",
    ".env.local"
  ]
}
// Returns all files; missing ones show error without blocking others

Quick System Health Check

system_info {}
// → { cpu: { model, cores, usage }, memory: { total, used, free }, disks: [...], uptime: "3d 14h" }

processes { sort_by: "memory", limit: 10 }
// → Top 10 memory consumers

Configuration

Create 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

Architecture

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

Contributing

Issues and PRs welcome. Please:

  1. Keep tools focused — no feature creep
  2. Maintain Windows compatibility
  3. Test with Claude Desktop before submitting

License

MIT License — use it, modify it, ship it.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured