windows-computer-use-mcp
Windows Computer Use MCP Server
English | 中文
Windows용 데스크톱 자동화 도구를 제공하는 MCP(Model Context Protocol) 서버입니다. MCP 프로토콜을 통해 마우스, 키보드 제어, 스크린샷, 클립보드 관리, 애플리케이션 상호 작용을 모두 수행할 수 있습니다.
참고: 이 서버는 Windows에서만 실행됩니다.
기능
스크린샷 — 전체 화면 또는 특정 영역을 base64 PNG로 캡처
마우스 제어 — 이동, 클릭, 더블클릭, 우클릭, 드래그, 스크롤
키보드 입력 — 텍스트 입력, 키 조합 누르기, 키 길게 누르기
커서 위치 — 현재 커서 좌표 가져오기
클립보드 — 클립보드 텍스트 읽기 및 쓰기
애플리케이션 관리 — 실행 중인 앱 나열, 전면 앱 가져오기, 앱 열기
디스플레이 정보 — 연결된 디스플레이와 크기 나열
Related MCP server: desktop-touch-mcp
도구
도구 | 설명 |
| 현재 화면의 스크린샷 촬영 |
| 특정 영역의 스크린샷 촬영 |
| 마우스 커서를 좌표로 이동 |
| 좌표 또는 현재 위치에서 왼쪽 클릭 |
| 좌표에서 오른쪽 클릭 |
| 좌표에서 더블클릭 |
| 한 지점에서 다른 지점으로 클릭 및 드래그 |
| 마우스 휠 스크롤 |
| 텍스트 문자열 입력 |
| 키 조합 누르기 (예: |
| 키를 일정 시간 동안 길게 누르기 |
| 현재 커서 위치 가져오기 |
| 표시 가능한 창이 있는 실행 중인 모든 앱 나열 |
| 현재 포커스된 앱 가져오기 |
| 이름 또는 경로로 앱 열기 |
| 연결된 디스플레이 나열 |
| 클립보드 텍스트 읽기 |
| 클립보드에 텍스트 쓰기 |
설치
사전 요구 사항
Bun >= 1.3.11
Windows 10/11
npm으로 설치
npm install -g windows-computer-use-mcpnpx로 설치 (설치 불필요)
npx windows-computer-use-mcp소스에서 빌드
git clone https://github.com/hiphopanda/windows-computer-use-mcp.git
cd windows-computer-use-mcp
bun install
bun run build구성
MCP 클라이언트 설정에 추가하세요 (예: Claude Desktop):
{
"mcpServers": {
"computer-use": {
"type": "stdio",
"command": "npx",
"args": ["windows-computer-use-mcp"]
}
}
}또는 전역으로 설치한 경우:
{
"mcpServers": {
"computer-use": {
"type": "stdio",
"command": "windows-computer-use-mcp"
}
}
}개발
bun install # Install dependencies
bun run dev # Run in development mode
bun run build # Build to dist/
bun run start # Run built version아키텍처
런타임: Bun + TypeScript
전송: stdio (MCP 프로토콜)
플랫폼 계층: 모든 데스크톱 작업은
Bun.spawn을 통해 실행되는 PowerShell 스크립트로 처리됩니다저수준 입력: 런타임에 로드되는 Win32 P/Invoke(
user32.dll) 사용 — 사전 컴파일된 네이티브 모듈 불필요
라이선스
中文
一个基于 MCP(Model Context Protocol)协议的 Windows 桌面自动化服务器。通过 MCP 协议控制鼠标、键盘、截屏、剪贴板,以及管理应用程序。
注意:本服务器仅支持 Windows 系统。
功能特性
截屏 — 全屏或指定区域截图,返回 base64 PNG
鼠标控制 — 移动、单击、双击、右击、拖拽、滚轮滚动
键盘输入 — 输入文本、按键组合、长按按键
光标位置 — 获取当前光标坐标
剪贴板 — 读写剪贴板文本
应用管理 — 列出运行中的应用、获取前台应用、打开应用
显示器信息 — 列出已连接的显示器及分辨率
工具列表
工具 | 说明 |
| 截取当前屏幕 |
| 截取指定区域 |
| 移动鼠标到指定坐标 |
| 左键点击 |
| 右键点击 |
| 双击 |
| 左键拖拽 |
| 滚动鼠标滚轮 |
| 输入文本 |
| 按键组合(如 |
| 长按按键 |
| 获取光标当前位置 |
| 列出所有运行中的应用 |
| 获取当前前台应用 |
| 按名称或路径打开应用 |
| 列出已连接的显示器 |
| 读取剪贴板文本 |
| 写入文本到剪贴板 |
安装
环境要求
Bun >= 1.3.11
Windows 10/11
通过 npm 安装
npm install -g windows-computer-use-mcp通过 npx 运行(无需安装)
npx windows-computer-use-mcp从源码构建
git clone https://github.com/hiphopanda/windows-computer-use-mcp.git
cd windows-computer-use-mcp
bun install
bun run build配置
在 MCP 客户端配置中添加(如 Claude Desktop):
{
"mcpServers": {
"computer-use": {
"type": "stdio",
"command": "npx",
"args": ["windows-computer-use-mcp"]
}
}
}或全局安装后:
{
"mcpServers": {
"computer-use": {
"type": "stdio",
"command": "windows-computer-use-mcp"
}
}
}开发
bun install # 安装依赖
bun run dev # 开发模式运行
bun run build # 构建到 dist/
bun run start # 运行构建产物架构
运行时:Bun + TypeScript
传输层:stdio(MCP 协议)
平台层:所有桌面操作通过
Bun.spawn执行 PowerShell 脚本底层输入:通过 Win32 P/Invoke(
user32.dll)在运行时加载 — 无需预编译原生模块
许可证
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceMCP server that provides computer control capabilities including mouse movements, keyboard actions, screenshot capture with OCR, and window management through a unified API.158MIT
- AlicenseAqualityAmaintenanceWindows desktop automation MCP server — screenshot, mouse, keyboard & UI Automation. Lets LLM agents see and control your Windows desktop directly.3035413MIT
- AlicenseNot gradedqualityDmaintenanceProvides comprehensive computer control capabilities including mouse and keyboard automation, screen capture, OCR text recognition, and window management through MCP protocol.1MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI clients to automate Windows desktop applications through window manipulation, image recognition, OCR, keyboard/mouse simulation, and memory operations via the MCP protocol.MIT
Related MCP Connectors
Eyes and hands on real Windows PCs — observe, click, type via Glasswarp API.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Hosted real Google Chrome MCP with per-user persistent state. Navigate, click, type, screenshot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hiphopanda/windows-computer-use-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server