Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/dddabtc/winremote-mcp/openclawnpx skills add dddabtc/winremote-mcp --skill openclawgit clone --depth 1 https://github.com/dddabtc/winremote-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/dddabtc/winremote-mcp/openclaw)<a href="https://agentmods.dev/skills/dddabtc/winremote-mcp/openclaw"><img src="https://agentmods.dev/badge/skills/dddabtc/winremote-mcp/openclaw.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01028 |
| Opus 5 | $0.00000 | $0.00514 |
| Sonnet 5 | $0.00000 | $0.00206 |
| Haiku 4.5 | $0.00000 | $0.00103 |
Grade A, and why
openclaw scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl http://<windows-ip>:8090/health How it starts
The opening of the file, as written. The whole thing — 134 lines — stays where its author put it; the contents beside it link to each section on GitHub.
winremote — Windows Remote Control
Control a Windows machine remotely via MCP protocol. 40 tools for desktop automation, system management, file operations, and more.
Prerequisites
- winremote-mcp running on the target Windows machine
- Network access from OpenClaw host to the Windows machine
Quick Setup
On Windows:
pip install winremote-mcp
python -m winremote
# Server starts on http://127.0.0.1:8090/mcp (local only)
# For remote access:
python -m winremote --host 0.0.0.0
With authentication (recommended):
python -m winremote --auth-key "your-secret-key"
Auto-start on boot:
python -m winremote install
OpenClaw Config
Add to ~/.openclaw/openclaw.json:
{
"mcp": {
"servers": {
"winremote": {
"type": "streamable-http",
"url": "http://<windows-ip>:8090/mcp"
}
}
}
}
With auth:
{
"mcp": {
"servers": {
"winremote": {
"type": "streamable-http",
"url": "http://<windows-ip>:8090/mcp",
"headers": {
"Authorization": "Bearer your-secret-key"
}
}
}
}
}
Available Tools (40)
Desktop Control
Snapshot— Screenshot + window list (JPEG compressed, multi-monitor support)AnnotatedSnapshot— Screenshot with numbered labels on clickable elementsOCR— Extract text from screen (pytesseract or Windows built-in)ScreenRecord— Record screen as GIF (2-10 seconds)Click— Mouse click at coordinates (left/right/middle, single/double)Type— Type text at coordinatesScroll— Scroll at positionMove— Move mouse or dragShortcut— Keyboard shortcuts (e.g. "ctrl+c", "alt+tab")FocusWindow— Bring window to front (fuzzy title match)MinimizeAll— Show desktop (Win+D)App— Launch, switch, or resize applications
System Management
Shell— Execute PowerShell commands (with working directory support)GetSystemInfo— CPU, memory, disk, network, uptimeListProcesses— Process list with CPU/memory usageKillProcess— Kill process by PID or nameServiceList/ServiceStart/ServiceStop— Windows service managementTaskList/TaskCreate/TaskDelete— Scheduled task managementEventLog— Windows event log viewer with level filtering
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 134 lines · 0 tokens per session scan A b3b21b3cae7b
openclaw is a skill published in the GitHub repository dddabtc/winremote-mcp (190 stars, last pushed 29d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,028 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
html-artifacts
Author the HTML for a plan artifact, dashboard iframe, or Slack attachment — structure, design plan, available runtime, theming, and craft. Read this before writing HTML for saveplan, outputiframe, or slackattachhtml.
langbot-eba-adapter-dev
Build, refactor, and test LangBot platform adapters for the Event-Based Agents architecture. Use when adding or migrating Telegram, Discord, or other messaging platform adapters to the EBA adapter layout, validating unified event/message conversion, writing live adapter probes, or using standalone plugin runtime plus…
langbot-plugin-dev
Develop, debug, and test LangBot plugins. Use when creating new LangBot plugins, fixing plugin bugs, setting up a LangBot test environment, or testing plugins via WebSocket. Covers plugin component architecture (EventListener, Command, Tool), the plugin SDK API (invokellm, getllmmodels, sendmessage, plugin storage)…
bootstrap-repo-analysis
First-time analysis of a repository with no prior reviewer outcomes. Crawl historical merged-PR review feedback with the gh CLI (plus any preloaded samples), extract the team's review norms, and synthesize the initial per-repo review-style prompt. Use this for a cold-start repo; use continual-learning instead once the…
langbot-mcp-ops
Operate a LangBot instance through its built-in MCP (Model Context Protocol) server. Use when an AI agent needs to manage LangBot — list/create/update/delete bots, pipelines, models, knowledge bases, MCP servers, and skills — over MCP instead of raw HTTP. Covers the /mcp endpoint, API-key auth (web-UI lbk keys and the…
langbot-space-ops
Browse and search the LangBot Space marketplaces (plugins, MCP servers, skills) through the Space MCP server. Use when an AI agent needs to discover LangBot extensions on space.langbot.app over MCP. Covers the /mcp endpoint, Personal Access Token (PAT) auth, the tool surface, and client configuration. Triggers on…