The Model Context Protocol (MCP) server for Windows Subsystem for Linux enables Claude Desktop users on Windows to interact with their WSL environments. This tool provides both read-only information gathering about your WSL system and secure command execution capabilities with built-in safety features.
To use the MCP-WSL-Exec server, you'll need to configure it through your MCP client. The setup process is straightforward:
Add the following configuration to your Claude Desktop settings:
{
"mcpServers": {
"mcp-wsl-exec": {
"command": "npx",
"args": ["-y", "mcp-wsl-exec"]
}
}
}
If you're using Cline, add this to your MCP settings:
{
"mcpServers": {
"mcp-wsl-exec": {
"command": "npx",
"args": ["-y", "mcp-wsl-exec"]
}
}
}
The server provides several MCP tools divided into two categories:
These tools provide context about your WSL environment without making changes:
Retrieves system information including OS version, kernel, and hostname.
Parameters: None
Lists directory contents and file information.
Parameters:
path
(string, optional): Directory path (defaults to current directory)details
(boolean, optional): Show detailed information (permissions, sizes, etc.)Displays disk space information.
Parameters:
path
(string, optional): Specific path to check (defaults to all filesystems)Shows environment variables.
Parameters:
filter
(string, optional): Filter pattern to search for specific variablesLists running processes.
Parameters:
filter
(string, optional): Filter by process nameThese tools allow you to run commands and make changes to your WSL environment:
Executes a command in WSL with safety checks and validation.
Parameters:
command
(string, required): Command to executeworking_dir
(string, optional): Working directory for command executiontimeout
(number, optional): Timeout in millisecondsNote: Potentially dangerous commands will require confirmation.
Confirms execution of a dangerous command that was flagged by safety checks.
Parameters:
confirmation_id
(string, required): Confirmation ID received from execute_commandconfirm
(boolean, required): Whether to proceed with the command executionThe server includes several safety mechanisms to protect your system:
The server identifies potentially dangerous commands that require explicit confirmation before execution, including:
All commands are sanitized to prevent:
This ensures safer operation when executing commands in your WSL environment.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "mcp-wsl-exec" '{"command":"npx","args":["-y","mcp-wsl-exec"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"mcp-wsl-exec": {
"command": "npx",
"args": [
"-y",
"mcp-wsl-exec"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"mcp-wsl-exec": {
"command": "npx",
"args": [
"-y",
"mcp-wsl-exec"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect