JUHE API Marketplace
CursorTouch avatar
MCP Server

Windows MCP

A lightweight open-source server that enables AI agents to interact with the Windows operating system, allowing for file navigation, application control, UI interaction, and QA testing without requiring computer vision.

3437
GitHub Stars
11/17/2025
Last Updated
MCP Server Configuration
1{
2 "command": "uv",
3 "args": [
4 "--directory",
5 "",
6 "run",
7 "main.py"
8 ]
9}
JSON9 lines
  1. Home
  2. MCP Servers
  3. windows-mcp-server

README Documentation

MseeP.ai Security Assessment Badge

🪟 Windows-MCP



Windows MCP is a lightweight, open-source project that enables seamless integration between AI agents and the Windows operating system. Acting as an MCP server bridges the gap between LLMs and the Windows operating system, allowing agents to perform tasks such as file navigation, application control, UI interaction, QA testing, and more.

mcp-name: io.github.CursorTouch/Windows-MCP

Updates

  • Windows-MCP is added to MCP Registry
  • Try out 🪟Windows-Use!!, an agent built using Windows-MCP.
  • Windows-MCP is now featured as Desktop Extension in Claude Desktop.

Supported Operating Systems

  • Windows 7
  • Windows 8, 8.1
  • Windows 10
  • Windows 11

🎥 Demos

https://github.com/user-attachments/assets/d0e7ed1d-6189-4de6-838a-5ef8e1cad54e

https://github.com/user-attachments/assets/d2b372dc-8d00-4d71-9677-4c64f5987485

✨ Key Features

  • Seamless Windows Integration
    Interacts natively with Windows UI elements, opens apps, controls windows, simulates user input, and more.

  • Use Any LLM (Vision Optional) Unlike many automation tools, Windows MCP doesn't rely on any traditional computer vision techniques or specific fine-tuned models; it works with any LLMs, reducing complexity and setup time.

  • Rich Toolset for UI Automation
    Includes tools for basic keyboard, mouse operation and capturing window/UI state.

  • Lightweight & Open-Source
    Minimal dependencies and easy setup with full source code available under MIT license.

  • Customizable & Extendable
    Easily adapt or extend tools to suit your unique automation or AI integration needs.

  • Real-Time Interaction
    Typical latency between actions (e.g., from one mouse click to the next) ranges from 0.7 to 2.5 secs, and may slightly vary based on the number of active applications and system load, also the inferencing speed of the llm.

🛠️Installation

Prerequisites

  • Python 3.13+
  • UV (Package Manager) from Astra, install with pip install uv or curl -LsSf https://astral.sh/uv/install.sh | sh
  • English as the default language in Windows highly preferred or disable the Launch-Tool and Switch-Tool in the MCP Server for Windows with other languages.
Install in Claude Desktop
  1. Install Claude Desktop and
npm install -g @anthropic-ai/mcpb
  1. Clone the repository.
git clone https://github.com/CursorTouch/Windows-MCP.git

cd Windows-MCP
  1. Build Desktop Extension MCPB:
npx @anthropic-ai/mcpb pack
  1. Open Claude Desktop:

Go to Settings->Extensions->Advance Settings->Install Extension (locate the .mcpb file)-> Install

  1. Enjoy 🥳.

For additional Claude Desktop integration troubleshooting, see the MCP documentation. The documentation includes helpful tips for checking logs and resolving common issues.

Install in Perplexity Desktop
  1. Install Perplexity Desktop:

  2. Clone the repository.

git clone https://github.com/CursorTouch/Windows-MCP.git

cd Windows-MCP
  1. Open Perplexity Desktop:

Go to Settings->Connectors->Add Connector->Advanced

  1. Enter the name as Windows-MCP, then paste the following JSON in the text area.
{
  "command": "uv",
  "args": [
    "--directory",
    "<path to the windows-mcp directory>",
    "run",
    "main.py"
  ]
}
  1. Click Save and Enjoy 🥳.

For additional Claude Desktop integration troubleshooting, see the Perplexity MCP Support. The documentation includes helpful tips for checking logs and resolving common issues.

Install in Gemini CLI
  1. Install Gemini CLI:
npm install -g @google/gemini-cli
  1. Clone the repository.
git clone https://github.com/CursorTouch/Windows-MCP.git

cd Windows-MCP
  1. Navigate to %USERPROFILE%/.gemini in File Explorer and open settings.json.

  2. Add the windows-mcp config in the settings.json and save it.

{
  "theme": "Default",
  ...
//MCP Server Config
  "mcpServers": {
    "windows-mcp": {
      "command": "uv",
      "args": [
        "--directory",
        "<path to the windows-mcp directory>",
        "run",
        "main.py"
      ]
    }
  }
}
  1. Rerun Gemini CLI in terminal. Enjoy 🥳
Install in Qwen Code 1. Install Qwen Code:
npm install -g @qwen-code/qwen-code@latest
  1. Clone the repository.
git clone https://github.com/CursorTouch/Windows-MCP.git

cd Windows-MCP
  1. Navigate to %USERPROFILE%/.qwen/settings.json.

  2. Add the windows-mcp config in the settings.json and save it.

{
//MCP Server Config
  "mcpServers": {
    "windows-mcp": {
      "command": "uv",
      "args": [
        "--directory",
        "<path to the windows-mcp directory>",
        "run",
        "main.py"
      ]
    }
  }
}
  1. Rerun Qwen Code in terminal. Enjoy 🥳
Install in Codex CLI 1. Install Codex CLI:
npm install -g @openai/codex
  1. Clone the repository.
git clone https://github.com/CursorTouch/Windows-MCP.git

cd Windows-MCP
  1. Navigate to %USERPROFILE%/.codex/config.toml.

  2. Add the windows-mcp config in the config.toml and save it.

[mcp_servers.windows-mcp]
command="uv"
args=[
  "--directory",
  "<path to the windows-mcp directory>",
  "run",
  "main.py"
]
  1. Rerun Codex CLI in terminal. Enjoy 🥳

🔨MCP Tools

MCP Client can access the following tools to interact with Windows:

  • Click-Tool: Click on the screen at the given coordinates.
  • Type-Tool: Type text on an element (optionally clears existing text).
  • Clipboard-Tool: Copy or paste using the system clipboard.
  • Scroll-Tool: Scroll vertically or horizontally on the window or specific regions.
  • Drag-Tool: Drag from one point to another.
  • Move-Tool: Move mouse pointer.
  • Shortcut-Tool: Press keyboard shortcuts (Ctrl+c, Alt+Tab, etc).
  • Key-Tool: Press a single key.
  • Wait-Tool: Pause for a defined duration.
  • State-Tool: Combined snapshot of default language, browser, active apps and interactive, textual and scrollable elements along with screenshot of the desktop.
  • Resize-Tool: Used to change the window size or location of an app.
  • Launch-Tool: To launch an application from the start menu.
  • Shell-Tool: To execute PowerShell commands.
  • Scrape-Tool: To scrape the entire webpage for information.

🤝 Connect with Us

Stay updated and join our community:

  • 📢 Follow us on X for the latest news and updates

  • 💬 Join our Discord Community

Star History

Star History Chart

⚠️Caution

This MCP interacts directly with your Windows operating system to perform actions. Use with caution and avoid deploying it in environments where such risks cannot be tolerated.

📝 Limitations

  • Selecting specific sections of the text in a paragraph, as the MCP is relying on a11y tree. (⌛ Working on it.)
  • Type-Tool is meant for typing text, not programming in IDE because of it types program as a whole in a file. (⌛ Working on it.)
  • This MCP server can't be used to play video games.

🪪License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgements

Windows-MCP makes use of several excellent open-source projects that power its Windows automation features:

  • UIAutomation

  • PyAutoGUI

Huge thanks to the maintainers and contributors of these libraries for their outstanding work and open-source spirit.

🤝Contributing

Contributions are welcome! Please see CONTRIBUTING for setup instructions and development guidelines.

Made with ❤️ by CursorTouch

Citation

@software{
  author       = {CursorTouch},
  title        = {Windows-MCP: Lightweight open-source project for integrating LLM agents with Windows},
  year         = {2024},
  publisher    = {GitHub},
  url={https://github.com/CursorTouch/Windows-MCP}
}

Quick Install

Quick Actions

View on GitHubView All Servers

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source

Boost your projects with Wisdom Gate LLM API

Supporting GPT-5, Claude-4, DeepSeek v3, Gemini and more.

Enjoy a free trial and save 20%+ compared to official pricing.

Learn More
JUHE API Marketplace

Accelerate development, innovate faster, and transform your business with our comprehensive API ecosystem.

JUHE API VS

  • vs. RapidAPI
  • vs. API Layer
  • API Platforms 2025
  • API Marketplaces 2025
  • Best Alternatives to RapidAPI

For Developers

  • Console
  • Collections
  • Documentation
  • MCP Servers
  • Free APIs
  • Temp Mail Demo

Product

  • Browse APIs
  • Suggest an API
  • Wisdom Gate LLM
  • Global SMS Messaging
  • Temp Mail API

Company

  • What's New
  • Welcome
  • About Us
  • Contact Support
  • Terms of Service
  • Privacy Policy
Featured on Startup FameFeatured on Twelve ToolsFazier badgeJuheAPI Marketplace - Connect smarter, beyond APIs | Product Huntai tools code.marketDang.ai
Copyright © 2025 - All rights reserved