MCP.so
Sign In
R

Robotgo Mcp

@lian-yang

About Robotgo Mcp

一个基于 Go 语言的 MCP (Model Context Protocol) 服务器,使用 robotgo 自动化库实现桌面自动化功能。这个服务允许 AI 客户端(如 Claude Desktop)通过 MCP 协议控制鼠标、键盘、屏幕等桌面元素。

Basic information

Category

Other

Transports

stdio

Publisher

lian-yang

Submitted by

lianyang

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "robotgo": {
      "command": "robotgo-mcp",
      "args": [
        "--transport=stdio"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Robotgo Mcp?

Robotgo Mcp is a Go-based MCP server that uses the robotgo library to provide desktop automation capabilities. It enables AI clients (such as Claude Desktop) to control mouse, keyboard, screen, clipboard, processes, and windows via the Model Context Protocol.

How to use Robotgo Mcp?

Build from source: git clone https://github.com/lian-yang/robotgo-mcp.git && cd robotgo-mcp && go build -o robotgo-mcp ./cmd/robotgo-mcp. Run with --transport=stdio for local use (recommended for Claude Desktop) or --transport=sse for remote access (optionally with --auth-token). Configure Claude Desktop by adding the command to its MCP servers config file (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json). Use the --port, --host, --log-level, and --debug flags to customize behavior.

Key features of Robotgo Mcp

  • Mouse control: move, click, scroll, drag, and get position.
  • Keyboard control: type text, tap single keys, execute hotkeys, press/release.
  • Screen operations: capture full or partial screen, get dimensions, read pixel colors.
  • Clipboard: read, write, and clear contents.
  • Process and window management: list, find, kill processes; activate, close, minimize, maximize, and get window titles.
  • Dual transport: stdio for local clients and SSE with Bearer token authentication for remote access.

Use cases of Robotgo Mcp

  • Capture screenshots for AI vision tasks.
  • Automate mouse clicks

Comments

More Other MCP servers