Skip to main content
Glama

Playwright MCP for macOS

by mb-dev

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.

🎯 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

ToolDescriptionUse Case
find_elementsFind UI elements using JSONPath"Show me all text fields"
find_elements_in_appSearch within a specific app"Find buttons in Safari"
click_by_accessibility_idClick using accessibility actions"Click the submit button"
click_at_positionClick at screen coordinates"Click at position (100, 200)"
type_text_to_element_by_selectorType text into elements"Type 'hello' into the search field"
get_app_overviewOverview of running applications"What apps are currently running?"
list_running_applicationsList all running apps"Show me all open applications"
check_accessibility_permissionsVerify 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! 😄

-
security - not tested
F
license - not found
-
quality - not tested

local-only server

The server can only run on the client's local machine because it depends on local resources.

Enables Claude to see and interact with any macOS application using natural language commands. Perfect for testing Mac applications, UI automation, and app development with AI assistance.

  1. 🎯 What is this?
    1. 🚀 Quick Start
      1. 1. Install
      2. 2. Set Up Accessibility Permissions
      3. 3. Configure Claude Code
      4. 4. Start Automating!
    2. 🛠 Available Tools
      1. 🔍 JSONPath Examples
        1. 🧪 Perfect for App Testing
          1. Test Automation
          2. UI Validation
          3. Accessibility Auditing
        2. 📸 Adding Screenshots to Your App
          1. 📦 Development Setup
            1. 🤝 Contributing & Bug Reports
              1. 🔧 Architecture
                1. ⚠️ Important Notes
                  1. Accessibility Permissions
                  2. Screenshot Permissions
                  3. Performance Tips
                  4. Limitations
                2. 📄 License
                  1. 🎭 Why "Playwright for Mac"?

                    Related MCP Servers

                    • A
                      security
                      A
                      license
                      A
                      quality
                      Enables interaction with the Things app through Claude Desktop, allowing task creation, project analysis, and priority management using natural language commands.
                      Last updated -
                      21
                      92
                      Python
                      MIT License
                      • Apple
                    • A
                      security
                      A
                      license
                      A
                      quality
                      Enables natural language interaction with Azure services through Claude Desktop, supporting resource management, subscription handling, and tenant selection with secure authentication.
                      Last updated -
                      3
                      8
                      15
                      TypeScript
                      MIT License
                    • A
                      security
                      F
                      license
                      A
                      quality
                      A local server that enables Claude Desktop to interact with your macOS Contacts and Messages apps, allowing you to search contacts and send iMessages through natural language commands.
                      Last updated -
                      2
                      14
                      JavaScript
                      • Apple
                    • A
                      security
                      A
                      license
                      A
                      quality
                      A collection of tools that enables Claude AI and Cursor to access native macOS applications such as Messages, Notes, Contacts, Emails, Reminders, Calendar, and Maps through the Model Context Protocol.
                      Last updated -
                      8
                      185
                      10
                      TypeScript
                      MIT License
                      • Apple

                    View all related MCP servers

                    MCP directory API

                    We provide all the information about MCP servers via our MCP API.

                    curl -X GET 'https://glama.ai/api/mcp/v1/servers/mb-dev/macos-ui-automation-mcp'

                    If you have feedback or need assistance with the MCP directory API, please join our Discord server