MCP Macos MCP Server

AI chatbot web app for controlling macOS through MCP server

Local serverstdioPython

What is the MCP Macos MCP server?

MCP Macos becomes available to MCP clients through the mcp macos mcp server. AI chatbot web app for controlling macOS through MCP server.

What MCP Macos does

This project provides both: 1. MCP Server - Python-based server for remote macOS control via VNC 2. AI Chat Web App - Modern web interface for chatting with AI to control your Mac

Key capabilities

  • No Extra API Costs — Free screen processing with your existing Claude Pro plan
  • Minimal Setup — Just enable Screen Sharing on the target Mac – no additional software needed
  • Universal Compatibility — Works with all macOS versions, current and future

Tools it exposes

Once connected, the assistant can call these 9 tools directly:

  • Prerequisites — The Prerequisites tool exposed by this server
  • remote_macos_get_screen — Connect to a remote macOS machine and get a screenshot of the remote desktop. Uses environment variables for connection details
  • remote_macos_send_keys — Send keyboard input to a remote macOS machine. Uses environment variables for connection details
  • remote_macos_mouse_move — Move the mouse cursor to specified coordinates on a remote macOS machine, with automatic coordinate scaling. Uses environment variables for connection details
  • remote_macos_mouse_click — Perform a mouse click at specified coordinates on a remote macOS machine, with automatic coordinate scaling. Uses environment variables for connection details
  • remote_macos_mouse_double_click — Perform a mouse double-click at specified coordinates on a remote macOS machine, with automatic coordinate scaling. Uses environment variables for connection
  • remote_macos_mouse_scroll — Perform a mouse scroll at specified coordinates on a remote macOS machine, with automatic coordinate scaling. Uses environment variables for connection details
  • remote_macos_open_application — Opens/activates an application and returns its PID for further interactions
  • remote_macos_mouse_drag_n_drop — Perform a mouse drag operation from start point and drop to end point on a remote macOS machine, with automatic coordinate scaling

Installing the mcp macos mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

Before the server will start you need to supply 2 environment variables: MACOS_HOST, OPENAI_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Docker Desktop installed - Node.js 18+ installed - A Mac with Screen Sharing enabled (can be the same machine)

Where it fits

Browser automation servers are the ones people reach for when a site has no API — the assistant drives a real page instead of guessing at endpoints. MCP Macos sits in that group, and the shape of its toolset — Prerequisites, remote_macos_get_screen, remote_macos_send_keys among others — tells you what it is really for. Worth comparing against the other browser automation servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 9 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use MCP Macos.
  • Maintained by senseisven, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp macos mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
PrerequisitesThe Prerequisites tool exposed by this server.
remote_macos_get_screenConnect to a remote macOS machine and get a screenshot of the remote desktop. Uses environment variables for connection details.
remote_macos_send_keysSend keyboard input to a remote macOS machine. Uses environment variables for connection details.
remote_macos_mouse_moveMove the mouse cursor to specified coordinates on a remote macOS machine, with automatic coordinate scaling. Uses environment variables for connection details.
remote_macos_mouse_clickPerform a mouse click at specified coordinates on a remote macOS machine, with automatic coordinate scaling. Uses environment variables for connection details.
remote_macos_mouse_double_clickPerform a mouse double-click at specified coordinates on a remote macOS machine, with automatic coordinate scaling. Uses environment variables for connection details.
remote_macos_mouse_scrollPerform a mouse scroll at specified coordinates on a remote macOS machine, with automatic coordinate scaling. Uses environment variables for connection details.
remote_macos_open_applicationOpens/activates an application and returns its PID for further interactions.
remote_macos_mouse_drag_n_dropPerform a mouse drag operation from start point and drop to end point on a remote macOS machine, with automatic coordinate scaling.

How to install the MCP Macos MCP server

{
  "mcpServers": {
    "remote-macos-use": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "-e",
        "MACOS_USERNAME=your_macos_username",
        "-e",
        "MACOS_PASSWORD=your_macos_password",
        "-e",
        "MACOS_HOST=your_macos_hostname_or_ip",
        "--rm",
        "buryhuang/mcp-remote-macos-use:latest"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Docker Desktop installed - Node.js 18+ installed - A Mac with Screen Sharing enabled (can be the same machine)
VariableDescriptionRequired
MACOS_HOSTEndpoint or connection string the server talks to.Optional
OPENAI_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Macos to Prerequisites.
  • Use MCP Macos to remote macos get screen.
  • Use MCP Macos to remote macos send keys.

Frequently asked questions

It connects MCP Macos to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (Prerequisites, remote_macos_get_screen, remote_macos_send_keys, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Macos directly.