Skip to main content

A powerful MCP server for PyAutoGUI

Project description

MCP Server for PyAutoGUI

mcp-pyautogui implements a Model Context Protocol (MCP) server for PyAutoGUI. It provides control of mouse, keyboard, and screen interactions, allowing AI systems to automate tasks on a host machine.

The server runs over stdio transport and provides tools for clicking, typing, taking screenshots, and more, with a focus on simplicity and reliability. It’s designed for developers and AI enthusiasts looking to integrate desktop automation into their workflows.

Features

  • Control mouse movements, clicks, and drags.
  • Simulate keyboard input (single keys, text, hotkeys).
  • Capture screenshots and retrieve mouse position.
  • Get the current operating system for platform-specific logic.
  • Consistent error handling with boolean success indicators (where applicable).

Prerequisites

  • Python 3.11+

You'll also have to grant the relevant permissions.

Installation

Use pip to install the server.

pip install mcp-pyautogui

You can then run the following comand to determine the location at which the server was installed:

which mcp-pyautogui

# Sample output:
# /Users/bob/miniconda3/envs/desk/bin/mcp-pyautogui

Use that location when you're adding mcp-pyautogui to your claude_desktop_config.json file. Here's a sample configuration:

{
  "mcpServers": {
    "mcp-pyautogui": {
      "command": "/Users/bob/miniconda3/envs/desk/bin/mcp-pyautogui",
      "args": [
          ""
      ]
  }
  }
}

Usage

If you followed the above installation steps, you don't need to do anything else. Just use Claude Desktop and you should see all the tools this MCP server offers automatically. You could test this server by saying something like "can you click at (200,200) ?".

The server runs over stdio transport, meaning it communicates through standard input/output. To use it, connect an MCP-compatible client (e.g., an AI assistant or custom script) that can send JSON-RPC commands and receive responses.

Example Commands

  • Click at (100, 200): click(100, 200) → Returns true if successful.
  • Type "hello": type_text("hello") → Returns true.
  • Take a screenshot: take_screenshot("screenshot.png") → Saves to screenshot.png.
  • Get mouse position: get_mouse_position() → Returns (500, 300) (example).
  • Copy text: hotkey("ctrl c") → Returns true.
  • Get current operating system: get_os() → Returns "Windows" (if on Windows).

Full List of Available Tools

  • click(x, y): Left-click at coordinates (x, y).
    • Parameters: x: int, y: int
    • Return Type: bool
  • right_click(x, y): Right-click at coordinates (x, y).
    • Parameters: x: int, y: int
    • Return Type: bool
  • move_to(x, y): Move mouse to coordinates (x, y) over 3 seconds.
    • Parameters: x: int, y: int
    • Return Type: bool
  • drag_to(x, y, duration): Drag mouse to (x, y) over specified duration (default 1.0s).
    • Parameters: x: int, y: int, duration: float
    • Return Type: bool
  • type_text(text): Type the given text.
    • Parameters: text: str
    • Return Type: bool
  • press_key(key): Press and release a single key (e.g., 'enter', 'space', 'a').
    • Parameters: key: str
    • Return Type: bool
  • hotkey(keys): Press multiple keys together (e.g., 'ctrl c'). Space-separated string.
    • Parameters: keys: str
    • Return Type: bool
  • scroll(amount): Scroll up (positive) or down (negative) by amount.
    • Parameters: amount: int
    • Return Type: bool
  • take_screenshot(filename): Save a screenshot to the specified file (e.g., 'screen.png').
    • Parameters: filename: str
    • Return Type: bool
  • get_mouse_position(): Get current mouse coordinates as (x, y).
    • Parameters: None
    • Return Type: Tuple[int, int]
  • get_os(): Get the current OS name (e.g., 'Windows', 'macOS', 'Linux').
    • Parameters: None
    • Return Type: str
  • double_click(x, y): Perform a double-click at the given (x, y) coordinates.
    • Parameters: x: int, y: int
    • Return Type: bool
  • get_screen_size(): Get the screen resolution as (width, height).
    • Parameters: None
    • Return Type: Tuple[int, int]
  • pixel_color(x, y): Get the RGB color of the pixel at (x, y). Returns (r, g, b) tuple.
    • Parameters: x: int, y: int
    • Return Type: Tuple[int, int, int]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_pyautogui-0.0.2.tar.gz (16.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_pyautogui-0.0.2-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file mcp_pyautogui-0.0.2.tar.gz.

File metadata

  • Download URL: mcp_pyautogui-0.0.2.tar.gz
  • Upload date:
  • Size: 16.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for mcp_pyautogui-0.0.2.tar.gz
Algorithm Hash digest
SHA256 71f5539fb6639fc935b2909b7a2bcc46254f3e4cbffd02276fcb97d1d09d93e9
MD5 2dc8538b8ee8d2768e5328ba8feae8ec
BLAKE2b-256 4276200f501e702a13b0a0b431053d318d1b3333d7ae984aaf1d611cec585599

See more details on using hashes here.

File details

Details for the file mcp_pyautogui-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: mcp_pyautogui-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for mcp_pyautogui-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 36e82251b440f9143bbdbf66f34538f9154d692c224bee375070e53bee7b4650
MD5 0d465e9a6a05d3cb80ed3b8ee795230e
BLAKE2b-256 e6b9b0413dd9ced8af326dc05449aad5c019063dec7a4a16bb1b61a55cbd22f8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page