Skip to main content

MCP server for macOS UI automation with Claude Desktop/Code integration, plus Python library and CLI interfaces

Project description

Playwright MCP for macOS 🎭

Like Playwright, but for native macOS applications. Control any Mac app with natural language through Claude - perfect for developing and testing Mac applications with AI assistance.

Python 3.10+ MCP Compatible License: MIT

🎯 What is this?

This is an MCP (Model Context Protocol) server that gives Claude the ability to see and interact with any macOS application - just like Playwright does for web browsers, but for native Mac apps.

Perfect for:

  • 🧪 Testing Mac applications - "Test the login flow in my app"
  • 🔍 App development - "Check if all buttons are properly labeled"
  • 🤖 UI automation - "Fill out this form and submit it"
  • 📱 App exploration - "Show me all the interactive elements in Finder"

🚀 Quick Start

1. Install

git clone https://github.com/mb-dev/macos-ui-automation-mcp.git
cd macos-ui-automation-mcp
uv sync

2. Set Up Accessibility Permissions

⚠️ Critical: Enable accessibility for your parent application:

  • If using Terminal: Add Terminal to System Settings → Privacy & Security → Accessibility
  • If using VS Code: Add VS Code to System Settings → Privacy & Security → Accessibility
  • If using Claude Code: Add Claude Code to System Settings → Privacy & Security → Accessibility

The parent app needs permission because it's the one actually executing the MCP server.

3. Configure Claude Code

Add to your Claude Code MCP settings:

{
  "mcpServers": {
    "macos-ui-automation": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/macos-ui-automation-mcp",
        "run",
        "macos-ui-automation-mcp"
      ]
    }
  }
}

4. Start Automating!

Now you can ask Claude things like:

  • "Find all buttons in the Calculator app"
  • "Click the submit button in my app"
  • "Click the screenshot button to capture the current window"
  • "Test the login flow by filling in credentials and clicking submit"

🛠 Available Tools

Tool Description Use Case
find_elements Find UI elements using JSONPath "Show me all text fields"
find_elements_in_app Search within a specific app "Find buttons in Safari"
click_by_accessibility_id Click using accessibility actions "Click the submit button"
click_at_position Click at screen coordinates "Click at position (100, 200)"
type_text_to_element_by_selector Type text into elements "Type 'hello' into the search field"
get_app_overview Overview of running applications "What apps are currently running?"
list_running_applications List all running apps "Show me all open applications"
check_accessibility_permissions Verify setup is correct "Is accessibility properly configured?"

🔍 JSONPath Examples

Find elements using powerful JSONPath queries:

# All buttons in any app
$..[?(@.role=='AXButton')]

# Buttons with specific text
$..[?(@.title=='Submit')]

# All text fields that are enabled
$..[?(@.role=='AXTextField' && @.enabled==true)]

# Elements with accessibility identifiers
$..[?(@.ax_identifier=='loginButton')]

# Elements in a specific app
$.processes[?(@.name=='Calculator')]..[?(@.role=='AXButton')]

🧪 Perfect for App Testing

This tool shines when developing and testing Mac applications:

Test Automation

"Test my login flow:
1. Find the username field and type 'testuser'  
2. Find the password field and type 'password123'
3. Click the login button
4. Verify a success message appears"

UI Validation

"Check my settings window:
- Are all buttons properly labeled?
- Are there any text fields without accessibility identifiers?
- Click the screenshot button to capture the current state"

Accessibility Auditing

"Audit my app for accessibility:
- Find all interactive elements without accessibility labels
- Check if keyboard navigation works properly
- Identify any elements that might be hard to use"

📸 Adding Screenshots to Your App

We don't provide built-in screenshot functionality, but you can easily add it to your Mac app! Check out our complete Swift implementation example based on a real-world app.

Key points:

  • Uses ScreenCaptureKit (macOS 14+) for high-quality captures
  • Automatically finds your app window
  • Saves timestamped screenshots to Documents/Screenshots
  • Integrates perfectly with this MCP - just add an accessibility identifier!

Usage with Playwright MCP:

"Click the screenshot button to capture the current window"

The MCP will find your button by accessibility ID and trigger the screenshot!

📦 Development Setup

For contributors and advanced users:

# Clone and install
git clone https://github.com/mb-dev/macos-ui-automation-mcp.git
cd macos-ui-automation-mcp
uv sync --dev

# Run tests
uv run python -m pytest tests/ -v

# Check code quality  
uv run ruff check src/ tests/ mcp_server_wrapper.py
uv run ruff format

# Test the MCP server
uv run macos-ui-automation-mcp

🤝 Contributing & Bug Reports

I have limited time to fix issues, so here's the deal:

  • 🐛 Found a bug? File an issue, but please include:

    • Your macOS version
    • Steps to reproduce
    • What you expected vs what happened
  • 🛠 Want it fixed faster? The best way is to:

    1. Fork the repo
    2. Write a failing test that reproduces the bug
    3. Fix the bug
    4. Submit a PR
  • Want a feature? Same deal - code it up and submit a PR!

I'm happy to review PRs and provide guidance, but I can't promise quick fixes for reported issues. The codebase is well-tested and documented, so dive in! 🚀

🔧 Architecture

Built with:

  • FastMCP - MCP server framework
  • PyObjC - macOS accessibility API bindings
  • Pydantic - Type-safe data models
  • JSONPath - Powerful element querying
  • Comprehensive test suite - Fake system for testing without real UI

⚠️ Important Notes

Accessibility Permissions

  • Must be granted to the parent application (Terminal, VS Code, etc.)
  • Not to Python or the MCP server itself
  • Required for any UI automation on macOS

Screenshot Permissions

  • If your app has screenshot functionality, it needs Screen Recording permission
  • Add your app to System Settings → Privacy & Security → Screen Recording
  • This is separate from accessibility permissions

Performance Tips

  • Use app-specific searches when possible (find_elements_in_app)
  • Shallow searches are faster for overviews
  • Deep searches are thorough but slower

Limitations

  • Requires accessibility API access (some apps restrict this)
  • Works best with native macOS applications
  • Some system-level elements may not be accessible

📄 License

MIT License - feel free to use this in your projects!

🎭 Why "Playwright for Mac"?

Just like Playwright revolutionized web testing by providing a simple API to control browsers, this tool does the same for native macOS applications. Instead of writing complex GUI automation scripts, just tell Claude what you want to test or automate in natural language.

Perfect for the age of AI-assisted development! 🤖


Need help? Check the examples/ folder or open an issue. Better yet, submit a PR! 😄

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

macos_ui_automation_mcp-0.2.0.tar.gz (134.6 kB view details)

Uploaded Source

Built Distribution

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

macos_ui_automation_mcp-0.2.0-py3-none-any.whl (44.6 kB view details)

Uploaded Python 3

File details

Details for the file macos_ui_automation_mcp-0.2.0.tar.gz.

File metadata

  • Download URL: macos_ui_automation_mcp-0.2.0.tar.gz
  • Upload date:
  • Size: 134.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for macos_ui_automation_mcp-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0a19ce9ce9e04489e923a04b365b809a9f660aa0027c04a18916bef09700312b
MD5 964c948e6f3b1caf1d4361f8f1f0d4e7
BLAKE2b-256 f0446f400bc372b968b0ee190f905481f5f3c7bf0c556448cb25871050c97749

See more details on using hashes here.

Provenance

The following attestation bundles were made for macos_ui_automation_mcp-0.2.0.tar.gz:

Publisher: publish.yml on mb-dev/macos-ui-automation-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file macos_ui_automation_mcp-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for macos_ui_automation_mcp-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 04bc5b02569354cdf77ce9a28f1f8f15fd4705a0c2d6209a1f1048b2cb8d7885
MD5 ab8f85afd6a6c137e452429366cf7629
BLAKE2b-256 49423af4da0438b30d9361df7d35898803a8f3ff096e9fd92ab1f72c665ff9a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for macos_ui_automation_mcp-0.2.0-py3-none-any.whl:

Publisher: publish.yml on mb-dev/macos-ui-automation-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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