Mac MCP
Enables browser automation in Google Chrome: open URLs, manage tabs, execute JavaScript, take screenshots, scroll, click coordinates, and extract DOM snapshots.
Allows control of a Mac computer: run shell commands, manage files and processes, automate macOS features (AppleScript, clipboard, notifications, reminders, screenshots, volume, brightness), and ask the user questions via native dialogs.
Enables browser automation in Safari: open URLs, manage tabs, execute JavaScript, take screenshots, scroll, click coordinates, and extract DOM snapshots.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Mac MCPopen Safari and navigate to google.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Mac MCP
Mac MCP is a local macOS MCP server for AI Agents, mainly for CustomGPT (ChatGPT). It exposes safe, structured HTTP endpoints and MCP tools for common desktop tasks: shell commands, files, processes, background jobs, macOS automation, browser control, screenshots, search, HTTP requests, and interactive user prompts.
It is designed for four common setups:
MCP clients that can connect to the
/mcpendpoint.Custom GPT Actions that need an OpenAPI schema and a public HTTPS URL, usually through ngrok.
Ability to handle all the things done just from your phone (app).
Replacing the Codex, with nearly unlimited prompt limits (3000 Thinking 'prompt' limits, not request.)
Security note: this server can control your Mac. Do not expose it without authentication. Use a strong
MCP_API_KEY, keepMCP_ALLOW_NO_AUTH=false, and only share your ngrok URL with clients you trust.
Features
Run zsh commands and inspect running processes.
Start, monitor, read, and stop long-running background jobs.
Read, write, move, copy, delete, search, and inspect files.
Run AppleScript, open apps/URLs, use clipboard, notifications, reminders, screenshots, volume, and brightness.
Control Safari or Google Chrome tabs, selectors, JavaScript, screenshots, scrolling, keys, coordinate clicks, and DOM snapshots.
Ask the local user a question with a native macOS dialog during autonomous workflows.
Use the same backend through MCP or REST endpoints for Custom GPT Actions.
Related MCP server: macinput
Requirements
macOS
Python 3.10+
Git
ngrok account, if you want a public HTTPS URL for Custom GPT Actions
Optional:
brightnessCLI for brightness control
brew install python git ngrok
brew install brightness # optionalInstallation
git clone https://github.com/bulutarkan/mac-mcp.git
cd mac-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
cp mcp_server/.env.example mcp_server/.envEdit mcp_server/.env:
MCP_API_KEY=replace-with-a-long-random-token
MCP_ALLOW_NO_AUTH=false
MCP_ALLOW_SHELL=true
RATE_LIMIT_PER_MINUTE=120
# Paste your static ngrok domain here. Use only the domain, not https://
NGROK_DOMAIN=your-domain.ngrok-free.devGenerate a token with:
python3 - <<'PY'
import secrets
print(secrets.token_urlsafe(48))
PYStart, stop, restart, and status
After pip install -e ., the mac-mcp command is available inside the virtual environment:
mac-mcp start # local server only
mac-mcp start --ngrok # local server + ngrok tunnel
mac-mcp status
mac-mcp restart --ngrok
mac-mcp stopUseful options:
mac-mcp start --host 127.0.0.1 --port 8000
mac-mcp start --ngrok --ngrok-domain your-domain.ngrok-free.dev
mac-mcp start --reload
mac-mcp stop --forcemac-mcp start starts only the local server on 127.0.0.1:8000. mac-mcp start --ngrok starts the local server and a managed ngrok tunnel in the background.
Logs are written to:
~/.mac-mcp/mac-mcp.logYou can also run the server directly:
uvicorn mcp_server.main:app --host 127.0.0.1 --port 8000Local endpoints
The server exposes:
MCP: http://127.0.0.1:8000/mcp
REST: http://127.0.0.1:8000/api/*Example REST request:
curl -X POST http://127.0.0.1:8000/api/system_info \
-H "Authorization: Bearer $MCP_API_KEY" \
-H "Content-Type: application/json" \
-d '{}'Example command request:
curl -X POST http://127.0.0.1:8000/api/run \
-H "Authorization: Bearer $MCP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"command":"pwd && sw_vers","timeout_s":10}'Getting a static ngrok dev domain
Custom GPT Actions require a public HTTPS URL. For local development, ngrok is the easiest option.
Sign in or create an ngrok account.
Install and authenticate ngrok:
ngrok config add-authtoken YOUR_NGROK_AUTHTOKENCreate a static domain in the ngrok dashboard:
Cloud Edge / Domains -> New DomainYou will get a domain like:
your-domain.ngrok-free.devPaste the static domain into
mcp_server/.env:
NGROK_DOMAIN=your-domain.ngrok-free.devUse only the domain. Do not include https:// in NGROK_DOMAIN.
Start Mac MCP and ngrok together:
mac-mcp start --ngrokThis starts the local server at http://127.0.0.1:8000 and the public ngrok tunnel at:
https://your-domain.ngrok-free.devYou can also override the domain from the command line:
mac-mcp start --ngrok --ngrok-domain your-domain.ngrok-free.devCustom GPT Actions setup
Use the included OpenAPI file:
openapi/custom-gpt-actions.jsonBefore importing it into the GPT builder, replace the placeholder server URL:
"servers": [
{
"url": "https://your-static-ngrok-domain.ngrok-free.dev"
}
]with your own ngrok domain:
"servers": [
{
"url": "https://your-domain.ngrok-free.dev"
}
]In the GPT builder:
Open your GPT.
Go to Configure -> Actions.
Create a new action.
Import
openapi/custom-gpt-actions.json.Set Authentication to API Key or Bearer token, depending on the UI.
Use this header format:
Authorization: Bearer YOUR_MCP_API_KEYThe REST endpoints are all under /api, and the operation IDs are stable. For example:
POST /api/run -> run_command
POST /api/system_info -> get_system_info
POST /api/files -> files_operation
POST /api/macos -> macos_operation
POST /api/browser -> browser_operation
POST /api/search -> search_operation
POST /api/interactive -> ask_userOpenAPI format
A Custom GPT Action schema needs three main pieces:
{
"openapi": "3.1.1",
"info": {
"title": "Mac MCP Server",
"version": "1.0.0"
},
"servers": [
{
"url": "https://your-domain.ngrok-free.dev"
}
],
"paths": {
"/api/system_info": {
"post": {
"operationId": "get_system_info",
"summary": "Get macOS system information",
"responses": {
"200": {
"description": "Successful response."
}
}
}
}
}
}For grouped endpoints such as /api/files, /api/macos, /api/browser, and /api/search, the tool field selects the internal operation. Example:
{
"tool": "read_file",
"path": "~/Desktop/example.txt"
}Browser example:
{
"tool": "browser_open_url",
"browser": "Google Chrome",
"url": "https://example.com",
"new_tab": true
}MCP endpoint
Clients that support MCP over streamable HTTP can connect to:
https://your-domain.ngrok-free.dev/mcpUse the same bearer token if authentication is enabled.
Security recommendations
Keep
MCP_ALLOW_NO_AUTH=falsewhen using ngrok.Use a long random
MCP_API_KEY.Prefer
127.0.0.1for the local bind address.Do not commit
.env, logs, job outputs, screenshots, or personal files.Review every tool you expose to AI clients. Shell, file, browser, and AppleScript tools are powerful.
Stop the server and the managed ngrok tunnel when you are not using them:
mac-mcp stopRepository structure
mcp_server/ Python server and tool implementations
openapi/custom-gpt-actions.json
pyproject.toml Package metadata and mac-mcp CLI entry point
README.mdLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/bulutarkan/mac-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server