Description

A .NET-based Windows desktop automation MCP server that provides AI assistants with the ability to interact with Windows.

Installation

npx -y windows-mcp-net
npm install windows-mcp-net
git clone https://github.com/AIDotNet/Windows-MCP.Net

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": {
    "windows-mcpnet": {
      "command": "npx",
      "args": [
        "-y",
        "windows-mcp-net"
      ]
    }
  }
}