@modelcontextprotocol/server-wsl
Enables Claude Desktop to interact with Windows Subsystem for Linux (WSL) environments, allowing command execution, file management, and distribution inspection from natural language.
README
@modelcontextprotocol/server-wsl
An MCP server that gives Claude Desktop full access to your Windows Subsystem for Linux (WSL) environment. Run commands, read and write files, and inspect your distributions — all from a Claude conversation on Windows.
Prerequisites
- Windows 10 version 2004+ or Windows 11
- WSL 2 installed (
wsl --installfrom an admin PowerShell) - At least one Linux distribution installed via the Microsoft Store or
wsl --install -d <Distro> - Node.js 18 or later (for building from source)
Installation
From npm (recommended)
npm install -g @modelcontextprotocol/server-wsl
From source
git clone https://github.com/modelcontextprotocol/servers.git
cd servers/src/wsl
npm install
npm run build
Configuration
Add the server to your Claude Desktop configuration file.
Config file location:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
Using npx (zero-install)
{
"mcpServers": {
"wsl": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-wsl"]
}
}
}
Using a globally installed package
{
"mcpServers": {
"wsl": {
"command": "mcp-server-wsl"
}
}
}
Running via WSL itself (alternative)
If you prefer to run the server inside WSL, you can invoke it through wsl.exe:
{
"mcpServers": {
"wsl": {
"command": "wsl.exe",
"args": ["node", "/path/to/wsl-mcp/dist/index.js"]
}
}
}
After editing the config, restart Claude Desktop. You should see the WSL tools appear in the Claude tool picker.
Available Tools
| Tool | Description |
|---|---|
list_distros |
List all installed WSL distributions, their state (Running/Stopped), WSL version, and which is the default |
run_command |
Execute a bash command in a WSL distribution; returns stdout, stderr, and exit code |
read_file |
Read a text file from the WSL filesystem by absolute path |
write_file |
Write or overwrite a file in the WSL filesystem |
list_directory |
List directory contents with names, types, permissions, sizes, and timestamps |
get_distro_info |
Get detailed info about a distribution: WSL version, state, kernel, OS release, current user |
Tool parameters
run_command
| Parameter | Type | Required | Description |
|---|---|---|---|
command |
string | ✅ | Bash command to run (passed to bash -c) |
distro |
string | Distribution name; defaults to your default distro | |
timeout_ms |
number | Milliseconds before the command is killed; defaults to 30 000 |
read_file
| Parameter | Type | Required | Description |
|---|---|---|---|
path |
string | ✅ | Absolute path within the WSL filesystem |
distro |
string | Distribution name; defaults to your default distro |
write_file
| Parameter | Type | Required | Description |
|---|---|---|---|
path |
string | ✅ | Absolute path within the WSL filesystem |
content |
string | ✅ | UTF-8 text content to write |
distro |
string | Distribution name; defaults to your default distro |
list_directory
| Parameter | Type | Required | Description |
|---|---|---|---|
path |
string | ✅ | Absolute path to the directory |
distro |
string | Distribution name; defaults to your default distro |
get_distro_info
| Parameter | Type | Required | Description |
|---|---|---|---|
distro |
string | Distribution name; defaults to your default distro |
Example prompts
Once connected, try asking Claude:
- "What WSL distributions do I have installed?"
- "Run
df -hin my Ubuntu distro and show me disk usage" - "Read the file
/etc/hostsfrom WSL" - "Create a Python script at
/home/user/hello.pythat prints Hello, World" - "List what's in my home directory in WSL"
- "What kernel version is my WSL instance running?"
Security considerations
- Commands execute as the default user of the chosen distribution (typically your regular Linux user, not root).
- There is no path sandboxing — Claude can read and write any file the WSL user has access to. Grant this MCP server only to trusted Claude conversations.
- Command output is capped at 10 MB to prevent runaway processes from overwhelming the host.
- The default command timeout is 30 seconds; use
timeout_msto increase it for long-running tasks.
Troubleshooting
"wsl.exe not found"
WSL is not installed or not on the system PATH. Run wsl --install from an admin PowerShell.
"No default WSL distribution is configured"
You have WSL installed but no distribution set as default. Fix with: wsl --set-default <DistroName>
Distribution shows as Stopped but commands still work This is expected — WSL automatically starts a stopped distribution when a command is run.
UTF-8 output looks garbled
Some older Windows builds emit WSL list output as UTF-16 LE. The server normalises this automatically; if you still see issues, ensure your WSL is up to date (wsl --update).
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。