经 AI Skill Hub 精选评估,系统中床台器 获评「推荐使用」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
导航系统中床台器的常用给给中床台器。导航系统中床台器的常用给给中床台器。
系统中床台器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
导航系统中床台器的常用给给中床台器。导航系统中床台器的常用给给中床台器。
系统中床台器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/dddabtc/winremote-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"------": {
"command": "npx",
"args": ["-y", "winremote-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 系统中床台器 执行以下任务... Claude: [自动调用 系统中床台器 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"______": {
"command": "npx",
"args": ["-y", "winremote-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
The ultimate Windows MCP server for remote desktop control and automation. Control any Windows machine through the Model Context Protocol — perfect for AI agents, Claude Desktop. Transform your Windows desktop into a powerful, remotely-accessible automation endpoint.
Run on the Windows machine you want to control. Built with FastMCP and the Model Context Protocol.
mkcert -install && mkcert 192.168.1.100
**Step 2 — Start with TLS:**cmd winremote-mcp --host 0.0.0.0 --port 8090 ^ --auth-key YOUR_SECRET_KEY ^ --ssl-certfile cert.pem ^ --ssl-keyfile key.pem
**OpenClaw config with HTTPS:**json { "plugins": { "entries": { "winremote": { "type": "mcp", "url": "https://192.168.1.100:8090/mcp", "headers": { "Authorization": "Bearer YOUR_SECRET_KEY" } } } } } ```
---
idna>=3.15 and starlette>=1.0.1 to avoid known vulnerable versions.```bash
pip install winremote-mcp[test] ```
pip install winremote-mcp[ocr] ```
pip install winremote-mcp
Run winremote-mcp on the Windows machine, then add it to Hermes as an MCP server:
pip install winremote-mcp
winremote-mcp --host 0.0.0.0 --port 8090 --auth-key "your-secret-key"
mcp_servers:
winremote:
type: streamable-http
url: http://<windows-ip>:8090/mcp
headers:
Authorization: Bearer your-secret-key
See the full Hermes integration guide for local stdio setup, verification prompts, and available capabilities.
pip install winremote-mcp
Local-only quick start (default, safest):
winremote-mcp
Remote access requires authentication:
Starting with v0.4.20, winremote-mcp refuses to bind HTTP transport to a non-loopback address without authentication. Use an API key for LAN or remote access:
winremote-mcp --host 0.0.0.0 --port 8090 --auth-key YOUR_SECRET_KEY
For lab-only legacy behavior, you can explicitly acknowledge the risk with --allow-insecure-remote; do not use this on shared, routed, or internet-exposed networks.
Auto-start on boot:
winremote-mcp install
Add to your openclaw.json:
{
"plugins": {
"entries": {
"winremote": {
"type": "mcp",
"url": "http://192.168.1.100:8090/mcp",
"headers": {
"Authorization": "Bearer YOUR_SECRET_KEY"
}
}
}
}
}
Or tell your OpenClaw agent: > "Add winremote MCP at http://192.168.1.100:8090/mcp with auth key YOUR_SECRET_KEY."
Once connected, your AI agent has full Windows control:
| Capability | Example |
|---|---|
| 🖥️ Screenshots | Capture the full desktop or a specific window |
| ⚡ Shell execution | Run PowerShell, CMD, or batch scripts |
| 📁 File transfer | Upload/download files between Linux and Windows |
| 🖱️ GUI automation | Click, type, drag — control any Windows app |
| 🔧 System info | Process list, services, event logs, registry |
| 📷 OCR | Extract text from any screen region |
| 🎬 Screen recording | Record desktop activity as GIF |
---
pip install winremote-mcp[ocr]
For text extraction from screenshots: ```bash
winget install UB-Mannheim.TesseractOCR
git clone https://github.com/dddabtc/winremote-mcp.git
cd winremote-mcp
pip install -e ".[test]"
pytest # Run tests
```bash
A: Windows may be locked or display turned off. Ensure: - Windows is unlocked and display is active - No screen saver is running - For multi-monitor setups, specify monitor parameter
Place in your working directory or ~/.config/winremote/winremote.toml:
```toml [server] host = "0.0.0.0" port = 8090 auth_key = "your-secret-key"
Search order: 1. --config /path/to/winremote.toml 2. ./winremote.toml 3. ~/.config/winremote/winremote.toml
[server]
host = "127.0.0.1"
port = 8090
auth_key = ""
ssl_certfile = "" # Path to SSL certificate for HTTPS
ssl_keyfile = "" # Path to SSL private key for HTTPS
[security]
ip_allowlist = ["127.0.0.1", "192.168.1.0/24"]
enable_tier3 = false
disable_tier2 = false
oauth_client_id = "" # Expected OAuth client ID (optional)
oauth_client_secret = "" # OAuth client secret for confidential clients
[tools]
enable = ["Snapshot", "Click", "Type"]
exclude = []
Precedence: CLI flags override config file values; config file values override defaults.
```
Supports both single IPs and CIDR ranges (IPv4/IPv6). Non-allowlisted clients receive HTTP 403 with a clear error.
For Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"winremote": {
"command": "winremote-mcp",
"args": ["--transport", "stdio"]
}
}
}
For HTTP MCP clients:
{
"mcpServers": {
"winremote": {
"type": "streamable-http",
"url": "http://192.168.1.100:8090/mcp",
"headers": {
"Authorization": "Bearer your-secret-key"
}
}
}
}
winremote-mcp works with MCP-compatible AI agents and clients. Client-specific setup guides live in this repo:
.cursor/mcp.json.winremote-mcp is the official Windows control layer for OpenClaw. Together they give your AI agent full remote control over any Windows machine — screenshots, PowerShell, file transfer, GUI automation, and more.
---
WinRemote MCP 是一个用于在 Windows 上远程运行 MCP 服务器的工具。它提供了桌面控制、窗口管理、远程 shell 访问和文件操作等功能。
WinRemote MCP 的功能包括桌面控制(截图、点击、输入、滚动和快捷键)、窗口管理(焦点窗口、最小化所有窗口、启动/调整应用程序和多显示器支持)、远程 shell 访问(PowerShell 命令执行和工作目录支持)和文件操作(读取、写入、列出和搜索文件,二进制传输通过 base64 编码)。
WinRemote MCP 需要 mkcert 安装才能获得信任证书(无浏览器警告)。请运行 mkcert -install && mkcert 192.168.1.100 来安装 mkcert。
您可以通过以下方式安装 WinRemote MCP:使用 pip 安装(pip install winremote-mcp),使用 Docker 安装(docker run -it -p 8090:8090 dddabtc/winremote-mcp),或从源码编译(git clone https://github.com/dddabtc/winremote-mcp.git && cd winremote-mcp && pip install -r requirements.txt)。
WinRemote MCP 的使用方法包括启动服务器(winremote-mcp --host 0.0.0.0 --port 8090 --auth-key YOUR_SECRET_KEY --ssl-certfile cert.pem --ssl-keyfile key.pem),配置文件(winremote.toml),API 接口(无)和 FAQ(问题与答案)。
WinRemote MCP 的配置文件(winremote.toml)包括服务器配置(host、port、auth_key等)、安全配置(ip_allowlist、enable_ti等)和其他配置项。您可以通过配置文件或命令行参数来配置 WinRemote MCP。
WinRemote MCP 可以与 MCP 兼容的 AI 代理和客户端一起使用。客户端特定设置指南可以在此仓库中找到:Hermes、OpenClaw 等。
WinRemote MCP 的常见问题包括如何安装、如何配置、如何使用 API 接口等。您可以通过查看 FAQ 来解决这些问题。
系统中床台器的常用给给中床台器。导航系统中床台器的常用给给中床台器。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:系统中床台器 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | winremote-mcp |
| 原始描述 | 开源MCP工具:Windows Remote MCP Server — 40+ tools for desktop automation, process management。⭐122 · Python |
| Topics | agentautomationclaudemcpmodel-context-protocolpython |
| GitHub | https://github.com/dddabtc/winremote-mcp |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-23 · 更新时间:2026-05-24 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端