Safari MCP Server
The Safari MCP Server provides 80+ native tools for automating macOS Safari, using your real browser sessions (with existing logins/cookies), ~60% less CPU than Chrome-based alternatives, and no focus stealing.
Navigation & Page Reading
Navigate to URLs, go back/forward, reload pages, get page title/URL/text/HTML source
Take accessibility snapshots and full accessibility trees for element targeting
Interaction
Click (single/double/right-click), hover, drag-and-drop via CSS selector, visible text, coordinates, or snapshot ref
Native OS-level clicks (CGEvent) to bypass bot detection (WAF/Cloudflare)
Press keyboard keys with modifier support (cmd, shift, alt, ctrl)
Forms & Input
Fill inputs (React/Vue/Angular/Svelte compatible), clear fields, select dropdowns, batch fill forms, fill & submit in one call
Type character-by-character (triggers autocomplete), replace code editor content (Monaco, CodeMirror, Ace, ProseMirror)
Screenshots, PDF & Scrolling
Viewport, full-page, or element screenshots; export pages as PDF
Scroll by pixels, to exact positions, or smoothly to elements
Tab & Window Management
List, open, close, and switch tabs; wait for new tabs (e.g., OAuth popups); resize the browser window
JavaScript & Console
Execute arbitrary JavaScript (with CSP fallback); capture, filter, and clear console messages
Element Inspection
Get element details, query all matches by CSS selector, compute CSS styles, auto-detect forms
Storage & Cookies
Get/set/delete cookies, localStorage, sessionStorage; export/import full storage state as JSON; list and read IndexedDB
Network & Performance
Capture network requests (headers/timing), mock/intercept API responses, throttle network conditions (slow-3g, offline, etc.)
Retrieve Web Vitals (FCP, LCP, CLS), navigation timing, and memory usage
Data Extraction
Extract HTML tables, meta tags (OG, Twitter Cards, JSON-LD), images, and links as structured JSON
Full SEO/audit page analysis in one call; CSS coverage analysis for unused rules
File, Clipboard & Device
Upload files and paste images via JS DataTransfer (no dialogs); read/write system clipboard
Emulate mobile devices (iPhone, iPad, Pixel, Galaxy) with custom viewports and user agents
Other
Handle alert/confirm/prompt dialogs, override geolocation, batch multiple actions in a single call, wait for elements/text/tabs to appear
Provides a comprehensive suite of 80 tools for native Safari browser automation on macOS, enabling navigation, element interaction, tab management, and session-aware browsing while preserving existing user logins and cookies.
๐ฆ Safari MCP
The browser for your coding agent.
Your real Safari, logged in โ no Chrome, no heat, no headless.
96 tools ยท No Chrome/Puppeteer/Playwright needed ยท ~5ms per command ยท 60% less CPU than Chrome
Quick Start ยท All 96 Tools ยท Examples ยท Why Safari MCP? ยท Architecture ยท Changelog

โ Without Safari MCP
Your AI agent needs to browse. So it either:
Spins up Chromium via Playwright โ with no logins, no cookies, no sessions
Uses Chrome DevTools MCP โ and melts your fan running a second browser
Relies on headless scrapers โ blocked by Cloudflare, reCAPTCHA, and bot detection
Related MCP server: mcp-browser
โ With Safari MCP
Your AI drives the Safari you're already logged into โ Gmail, GitHub, Ahrefs, Slack, banking.
Native WebKit. ~60% less CPU. Background operation. 96 tools. One npx command. macOS only.
๐ฐ Featured on freeCodeCamp: How to Connect Your AI Coding Agent to a Browser on macOS ยท HackerNoon: Reverse-Engineering React, Shadow DOM, and CSP
๐ Apple shipped an official Safari MCP (Safari Technology Preview 247, July 2026). It's built on
safaridriverfor isolated debugging sessions. safari-mcp drives the real Safari you're already logged into โ on stable Safari, with 96 tools. See the full comparison below.
Highlights
96 tools โ navigation, clicks, forms, screenshots, network, storage, accessibility, and more
Zero heat โ native WebKit on Apple Silicon, ~60% less CPU than Chrome
Your real browser โ keeps all logins, cookies, sessions (Gmail, GitHub, Ahrefs, etc.)
Background operation โ Safari stays in the background, no window stealing
No browser dependencies โ no Puppeteer, no Playwright, no WebDriver, no Chrome
Persistent process โ reuses a single osascript process (~5ms per command vs ~80ms)
Framework-compatible โ React, Vue, Angular, Svelte form filling via native setters
Quick Start
Prerequisites
macOS (any version with Safari)
Node.js 18+
Safari โ Settings โ Advanced โ Show features for web developers โ
Safari โ Develop โ Allow JavaScript from Apple Events โ
Install (one command)
npx safari-mcpThat's it โ no global install needed. Or install permanently:
npm install -g safari-mcpConfigure your MCP client
All clients run Safari MCP the same way โ npx safari-mcp. Pick your editor:
claude mcp add safari -- npx safari-mcpOr edit ~/.mcp.json:
{
"mcpServers": {
"safari": {
"command": "npx",
"args": ["safari-mcp"]
}
}
}Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"safari": {
"command": "npx",
"args": ["safari-mcp"]
}
}
}Restart Claude Desktop after saving.
One-click: Install in Cursor
Or edit .cursor/mcp.json in your project:
{
"mcpServers": {
"safari": {
"command": "npx",
"args": ["safari-mcp"]
}
}
}One-click: Install in VS Code
Or edit .vscode/mcp.json:
{
"servers": {
"safari": {
"type": "stdio",
"command": "npx",
"args": ["safari-mcp"]
}
}
}Edit .windsurf/mcp.json in your project (or ~/.codeium/windsurf/mcp_config.json globally):
{
"mcpServers": {
"safari": {
"command": "npx",
"args": ["safari-mcp"]
}
}
}Open Cline in VS Code โ click the MCP icon โ Edit MCP Settings โ add:
{
"mcpServers": {
"safari": {
"command": "npx",
"args": ["safari-mcp"]
}
}
}Edit ~/.continue/config.yaml (or .continue/config.yaml in workspace):
mcpServers:
- name: safari
command: npx
args:
- safari-mcpEdit ~/.config/goose/config.yaml:
extensions:
safari:
name: safari
type: stdio
cmd: npx
args:
- safari-mcp
enabled: trueOpen LM Studio โ Settings โ MCP Servers โ Add Server:
Name:
safariCommand:
npxArgs:
safari-mcp
Open Zed โ Settings โ search for "Context Servers" and add:
{
"context_servers": {
"safari": {
"command": {
"path": "npx",
"args": ["safari-mcp"]
}
}
}
}brew install achiya-automation/tap/safari-mcpgit clone https://github.com/achiya-automation/safari-mcp.git
cd safari-mcp && npm installUsage Workflow
The recommended pattern for AI agents using Safari MCP:
1. safari_snapshot โ Get page state (accessibility tree)
2. safari_click/fill/... โ Interact with elements by ref
3. safari_snapshot โ Verify the resultElement targeting โ tools accept multiple targeting strategies:
Strategy | Example | Best for |
CSS selector |
| Unique elements |
Visible text |
| Buttons, links |
Coordinates |
| Canvas, custom widgets |
Ref from snapshot |
| Any element from accessibility tree |
Tip: Start with
safari_snapshotto get element refs, then use refs for precise targeting. This is faster and more reliable than CSS selectors.
Tools (96)
Navigation (4)
Tool | Description |
| Navigate to URL (auto HTTPS, wait for load) |
| Go back in history |
| Go forward in history |
| Reload page (optional hard reload) |
Page Reading (3)
Tool | Description |
| Get title, URL, and text content |
| Get full HTML source |
| Navigate + read in one call |
Click & Interaction (6)
Tool | Description |
| Click by CSS selector, visible text, or coordinates |
| Double-click (select word, etc.) |
| Right-click (context menu) |
| Hover over element |
| Click + wait for navigation |
| Click then return the updated page โ saves a round-trip (React Router + full loads) |
Form Input (11)
Tool | Description |
| Fill input (React/Vue/Angular compatible) |
| Clear input field |
| Select dropdown option |
| Batch fill multiple fields |
| Fill form + submit in one call |
| Type real keystrokes (JS-based, no System Events) |
| Press key with modifiers |
| Set a react-select v5 value via React fiber โ bypasses the menu UI |
| List a react-select v5 dropdown's options without opening it |
| Replace all content in a code editor (Monaco, CodeMirror, Ace, ProseMirror) |
| Verify an editor's framework-level state matches expected โ catch stale DOM before Submit |
Screenshots & PDF (3)
Tool | Description |
| Screenshot as PNG (viewport or full page) |
| Screenshot a specific element |
| Export page as PDF |
Scroll (3)
Tool | Description |
| Scroll up/down by pixels |
| Scroll to exact position |
| Smooth scroll to element |
Tab Management (5)
Tool | Description |
| List all tabs (index, title, URL) |
| Open new tab (background, no focus steal) |
| Close tab |
| Switch to tab by index |
| Wait for a new tab (e.g. OAuth popup) and auto-switch to it |
Wait (2)
Tool | Description |
| Wait for element, text, or URL change |
| Wait for specified milliseconds |
JavaScript (1)
Tool | Description |
| Execute arbitrary JavaScript, return result |
Element Inspection (4)
Tool | Description |
| Element details (tag, rect, attrs, visibility) |
| Find all matching elements |
| Computed CSS styles |
| Auto-detect all forms with field selectors |
Accessibility (2)
Tool | Description |
| Full a11y tree: roles, ARIA, focusable elements |
| Accessibility tree with ref IDs for every interactive element โ preferred way to see page state |
Drag & Drop (1)
Tool | Description |
| Drag between elements or coordinates |
File Operations (2)
Tool | Description |
| Upload file via JS DataTransfer (no file dialog!) |
| Paste image into editor (no clipboard touch!) |
Dialog & Window (2)
Tool | Description |
| Handle alert/confirm/prompt |
| Resize browser window |
Device Emulation (2)
Tool | Description |
| Emulate device (iPhone, iPad, Pixel, Galaxy) |
| Reset to desktop |
Cookies & Storage (11)
Tool | Description |
| Get all cookies |
| Set cookie with all options |
| Delete one or all cookies |
| Read localStorage |
| Write localStorage |
| Delete/clear localStorage |
| Read sessionStorage |
| Write sessionStorage |
| Delete/clear sessionStorage |
| Export all storage as JSON (backup/restore sessions) |
| Import storage state from JSON |
Clipboard (2)
Tool | Description |
| Read clipboard text |
| Write text to clipboard |
Network (6)
Tool | Description |
| Quick network requests via Performance API |
| Start detailed capture (fetch + XHR) |
| Get captured requests with headers/timing |
| Clear captured requests |
| Mock network responses (intercept fetch/XHR) |
| Remove all network mocks |
Console (4)
Tool | Description |
| Start capturing console messages |
| Get all captured messages |
| Clear captured messages |
| Filter by level (log/warn/error) |
Performance (2)
Tool | Description |
| Navigation timing, Web Vitals, memory |
| Simulate slow-3g/fast-3g/4g/offline |
Data Extraction (4)
Tool | Description |
| Tables as structured JSON |
| All meta: OG, Twitter, JSON-LD, canonical |
| Images with dimensions and loading info |
| Links with rel, external/nofollow detection |
Advanced (7)
Tool | Description |
| Override browser geolocation |
| List IndexedDB databases |
| Read IndexedDB records |
| Find unused CSS rules |
| Full page analysis in one call |
| Diagnose the macOS permission + daemon chain (Apple Events, Accessibility, Screen Recording, codesign) with per-failure fixes |
| Hot-reload the Safari MCP Bridge extension without a manual toggle |
Automation (1)
Tool | Description |
| Run multiple actions in a single call (batch) |
Native Input โ CGEvent (4)
Tool | Description |
| OS-level mouse click (CGEvent, |
| OS-level cursor hover โ triggers real |
| Insert text via the real paste pipeline โ ProseMirror/Slate/Draft.js process it natively so Submit sends real data |
| OS-level keypress + modifiers to Safari, no focus steal โ reaches React trust-gated handlers (Discord/Slack send) |
iOS & WebKit Validation (4)
Tool | Description |
| Validate the |
| Read live safe-area-inset values + viewport-fit / |
| Audit iOS "Add to Home Screen" / PWA readiness (apple-touch-icon, manifest, theme-color, splash) |
| Check page CSS against this Safari via |
Security
Safari MCP runs locally on your Mac with minimal attack surface:
Aspect | Detail |
Network | No remote connections โ all communication is local (stdio + localhost) |
Permissions | macOS system permissions required (Screen Recording for screenshots) |
Data | No telemetry, no analytics, no data sent anywhere |
Extension | Communicates only with |
Code | Fully open source (MIT) โ audit every line |
Safari MCP vs Alternatives
Feature | Safari MCP | Chrome DevTools MCP | Playwright MCP |
CPU/Heat | ๐ข Minimal | ๐ด High | ๐ก Medium |
Your logins | โ Yes | โ Yes | โ No |
macOS native | โ WebKit | โ Chromium | โ Chromium/WebKit |
Browser dependencies | None | Chrome + debug port | Playwright runtime |
Tools | 96 | ~30 | ~25 |
File upload | JS (no dialog) | CDP | Playwright API |
Image paste | JS (no clipboard) | CDP | Playwright API |
Focus steal | โ Background | โ Background | โ Headless |
Network mocking | โ | โ | โ |
Lighthouse | โ | โ | โ |
Performance trace | โ | โ | โ |
Tip: Use Safari MCP for daily browsing tasks (95% of work) and Chrome DevTools MCP only for Lighthouse/Performance audits.
vs Apple's Official Safari MCP (safaridriver)
In Safari Technology Preview 247 (July 2026), Apple shipped an official Safari MCP server built on safaridriver. That's great validation for the category โ and it's built for a different job. Apple's server drives an isolated WebDriver automation session for debugging; safari-mcp drives the real Safari you're already logged into.
๐ฆ safari-mcp (this repo) | Apple | |
Your real logins / cookies | โ Your actual Safari | โ ๏ธ Isolated automation session โ no access to AutoFill or browsing activity |
Runs on | โ Stable Safari, every Mac | โ Safari Technology Preview 247 only |
Background (no focus steal) | โ Yes | โ Dedicated window with a "controlled by automation" banner |
Tools | 96 | ~17 |
Storage (cookies, localStorage, IndexedDB) | โ 10 tools | โ |
Network mocking + throttling | โ Yes | โ Read-only network inspection |
Device emulation (iPhone, iPad) | โ Yes | โ ๏ธ Viewport + media type only |
Setup |
| Enable "remote automation and external agents" in STP |
Official Apple support | โ Community (MIT) | โ Apple, WebDriver-standard |
When Apple's server is the right pick: you specifically want a clean-room, WebDriver-standard session for compatibility debugging and you already run STP. For everything else โ daily automation on the browser you're already signed into, on stable Safari โ safari-mcp is built for exactly that.
Why Safari MCP and Not the Other Safari MCP Projects?
There are several "safari-mcp" projects floating around. Here's how they compare:
Feature | ๐ฆ safari-mcp (this repo) | |||
Tools | 96 | ~10 | 23 | ~15 |
Install |
| Manual | Binary |
|
Engine | Dual (Extension + AppleScript) | WebDriver | Extension only | DevTools Protocol |
Keeps your real Safari logins | โ Yes | โ ๏ธ Limited | โ Yes | โ Debug session |
Background (no focus steal) | โ Yes | โ No | โ ๏ธ Sometimes | โ Yes |
Storage tools (cookies, localStorage, IndexedDB) | 10 | 0 | 0 | 2 |
Data extraction (tables, meta, images, links) | 4 | 0 | 0 | 0 |
Network mocking | โ Yes | โ No | โ No | โ No |
Device emulation (iPhone, iPad, Pixel) | โ Yes | โ No | โ No | โ No |
File upload (no dialog) | โ JS DataTransfer | โ No | โ No | โ No |
Image paste (no clipboard touch) | โ Yes | โ No | โ No | โ No |
PDF export | โ Yes | โ No | โ No | โ No |
Console capture | 4 tools | 0 | 1 | 1 |
Performance metrics + Web Vitals | โ Yes | โ No | โ No | โ ๏ธ Partial |
Active maintenance | โ Multiple releases/week | ๐ก Sporadic | ๐ก Slow | ๐ก Slow |
License | MIT | MIT | None specified | MIT |
In MCP Registry | โ | โ | โ | โ |
In Awesome MCP | โ | โ | โ | โ |
TL;DR โ if you want the most complete Safari MCP with the smoothest install, the most tools, and active maintenance, this is the one.
Architecture
Safari MCP uses a dual-engine architecture โ the Extension is preferred for speed and advanced capabilities, with AppleScript as an always-available fallback:
Claude/Cursor/AI Agent
โ MCP Protocol (stdio)
Safari MCP Server (Node.js)
โ โ
Extension (HTTP) AppleScript + Swift daemon
(~5-20ms/cmd) (~5ms/cmd, always available)
โ โ
Content Script do JavaScript in tab N
โ โ
Page DOM โโโโโโโโโโ Page DOMKey design decisions:
Dual engine with automatic fallback โ Extension is preferred; if not connected, AppleScript handles everything seamlessly
Persistent Swift helper โ one long-running process instead of spawning per command (16x faster)
Tab-indexed operations โ all JS runs on a specific tab by index, never steals visual focus
JS-first approach โ typing, clicking, file upload all use JavaScript events (no System Events keyboard conflicts)
No
activateโ Safari is never brought to foreground
Safari Extension (Optional)
The Safari MCP Extension is optional but recommended. Without it, ~80% of functionality works via AppleScript alone. The extension adds capabilities that AppleScript cannot provide:
What the Extension Adds
Capability | With Extension | AppleScript Only |
Closed Shadow DOM (Reddit, Web Components) | โ Full access | โ Invisible |
Strict CSP sites | โ Bypasses via MAIN world | โ Often blocked |
React/Vue/Angular state manipulation | โ Deep (Fiber, ProseMirror) | โ ๏ธ Basic |
Loading state detection (spinners, skeletons) | โ Smart detection | โ No |
Dialog handling (alert/confirm) | โ | โ Only AppleScript |
Native OS-level click (CGEvent) | โ | โ Only AppleScript |
PDF export | โ | โ Only AppleScript |
When do you need the extension? If you're automating modern SPAs with closed shadow DOM (e.g., Reddit), sites with strict Content Security Policy, or framework-heavy editors (Draft.js, ProseMirror, Slate).
Installing the Extension
The extension requires a one-time build with Xcode (free, included with macOS).
Note for npm users: The
xcode/directory is not included in the npm package. Clone the GitHub repository to build from source.
Prerequisites: Xcode (install from App Store โ free)
# 1. Clone the repo (the npm package does not include the Xcode project)
git clone https://github.com/achiya-automation/safari-mcp.git
cd safari-mcp
# 2. Build the extension
xcodebuild -project "xcode/Safari MCP/Safari MCP.xcodeproj" \
-scheme "Safari MCP (macOS)" -configuration Release build
# 3. Ad-hoc sign the built app so Safari will load it
# (xcodebuild without a signing identity produces a bundle Safari silently rejects)
APP_PATH=$(find ~/Library/Developer/Xcode/DerivedData/Safari_MCP-*/Build/Products/Release -name "Safari MCP.app" -maxdepth 2 | head -1)
codesign --sign - --force --deep "$APP_PATH"
# 4. Re-sign safari-helper with the Apple Events entitlement
# (helps macOS surface the TCC Automation prompt reliably)
codesign --sign - --force --entitlements safari-helper.entitlements safari-helper
# 4. Open the app (needed once so Safari registers the extension)
open "$APP_PATH"Alternatively, open xcode/Safari MCP/Safari MCP.xcodeproj directly in Xcode, select your Apple ID under Signing & Capabilities, and click Run. A free personal Apple Developer account is sufficient for local use.
Then in Safari:
Safari โ Settings โ Advanced โ enable Show features for web developers
Safari โ Develop โ Allow Unsigned Extensions (required each Safari restart)
Safari โ Settings โ Extensions โ enable Safari MCP Bridge
The extension connects automatically to the MCP server on port 9224.
Note: "Allow Unsigned Extensions" resets every time Safari restarts. You'll need to re-enable it in the Develop menu after each restart. The extension itself stays installed.
Toolbar icon status:
ON โ connected to MCP server
OFF โ manually disabled via popup
(no badge) โ server not running, will auto-reconnect
macOS Permissions
Safari MCP needs these one-time permissions:
Permission | Where | Why |
JavaScript from Apple Events | Safari โ Develop menu | Required for |
Automation โ Safari | System Settings โ Privacy & Security โ Automation | Required for all AppleScript-backed tools |
Screen Recording | System Settings โ Privacy & Security โ Screen Recording | Required for |
Accessibility (safari-helper) | System Settings โ Privacy & Security โ Accessibility | Required for |
Granting Accessibility to safari-helper (required for safari_native_*)
The safari_native_click, safari_native_keyboard and safari_native_hover tools inject OS-level CGEvent events into Safari without stealing focus. macOS requires the underlying helper binary to be approved in Accessibility before those events can reach a non-frontmost window.
Open System Settings โ Privacy & Security โ Accessibility.
Click
+(unlock with your password if needed).Navigate to the helper binary and add it:
npm global install:
$(npm root -g)/safari-mcp/safari-helpernpx / project install:
./node_modules/safari-mcp/safari-helperFrom source clone:
/path/to/safari-mcp/safari-helper
Make sure the toggle next to it is ON.
The postinstall script re-signs the helper with a stable identifier (com.achiya-automation.safari-mcp) so this permission survives future upgrades โ without that step, every npm update would silently revoke approval because the binary's adhoc-signed identifier changes per build.
If safari_native_click reports success but the page doesn't react (no isTrusted: true click events fire), the helper is most likely missing this approval. The safari_* (non-native_) tools don't need it.
Granting Automation โ Safari (important for IDE users)
macOS TCC grants Automation permission to the parent process that spawns the MCP server, not to safari-mcp itself. So you need to grant Automation โ Safari to the app that runs Claude Code / Cursor / Windsurf โ typically Visual Studio Code or Terminal.
If the permission dialog never appears automatically, run this command once from a Terminal that already has Automation permission:
osascript -e 'tell application "Safari" to get URL of current tab of window 1'That call registers the Terminal app in the Automation database and then triggers the prompt for Safari. After you approve it, subsequent MCP calls from any child process chain will work.
Troubleshooting
Issue | Fix |
"AppleScript error" | Enable "Allow JavaScript from Apple Events" in Safari โ Develop |
"Not authorized to send Apple events to Safari" | Grant Automation โ Safari to your IDE (see above) |
"Not authorized" after | Updating changes the binary's cdhash โ macOS silently revokes Automation permission. Re-run the |
| Add |
Screenshots empty | Grant Screen Recording permission to Terminal/VS Code |
Tab not found | Call |
Hebrew keyboard issues | All typing uses JS events โ immune to keyboard layout |
HTTPS blocked |
|
Safari steals focus | Ensure you're on latest version โ |
Works With
Safari MCP works with any MCP-compatible client:
Client | Status |
โ Tested daily | |
โ Tested | |
โ Tested | |
โ Compatible | |
โ Compatible |
Contributing
PRs welcome! See CONTRIBUTING.md for setup instructions.
The codebase is two files:
safari.jsโ Safari automation layer (AppleScript + JavaScript)index.jsโ MCP server with tool definitions
Sponsors
Safari MCP is free and open source. If it saves you time or CPU cycles, consider supporting its development:
Your support funds:
๐งช Testing across macOS versions and Safari releases
๐ ๏ธ New tools and features
๐ Documentation and examples
Commercial Support
Need Safari MCP integrated into your product or agent stack? Achiya Automation offers:
Priority bug fixes and custom tool development for your use case
Integration consulting โ wiring Safari MCP into production agent systems (Claude, Cursor, n8n, custom)
Private deployment support โ multi-user Safari MCP, non-standard macOS environments, CI/CD
Training workshops for engineering teams adopting MCP-based automation
Built by the author of Safari MCP. Start a conversation โ
What agents unlock with Safari MCP
When an AI agent drives Safari MCP, it gets things a headless browser can't:
Real authenticated sessions โ Gmail, GitHub, Ahrefs, Slack, banking dashboards are all already logged in
Framework-aware form filling โ
safari_fill_and_submitcalls React/Vue/Angular setters natively, no guessing whetherinputevents firedBackground operation โ the agent works in parallel while you keep using your Mac
One MCP call per workflow โ
safari_run_scriptbatches navigation + clicks + extraction into a single roundtrip
The pattern holds across models: drive the browser the human already trusts โ you inherit logins, cookies, extensions, and the user's exact environment in one step.
Community
6,000+ monthly npm downloads โ developers are building AI agents on macOS with Safari MCP.
GitHub Discussions โ ask questions, share use cases
Issues โ bug reports and feature requests
โ start contributing
Ecosystem
Other macOS MCP servers that complement Safari MCP:
Project | What it does | When to use |
OS-level macOS automation (accessibility, screen control) | System-wide interactions beyond Safari | |
Chrome DevTools Protocol | Lighthouse audits, Chrome-specific performance traces |
Using Safari MCP alongside Chrome DevTools MCP? Safari handles 95% of daily browsing (zero overhead), Chrome handles the 5% that needs Lighthouse or Chrome-specific traces.
Like it? Give it a โญ
If Safari MCP saves you from Chrome overhead, a star helps others discover it:
Share on Twitter/X ยท Share on LinkedIn ยท Write about it
Listed On
License
MIT โ use it however you want.
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/achiya-automation/safari-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server