npm @dominion525/familiar-mcpstdioMITupdated 2mo ago
Control your real macOS Chrome via AppleScript โ no DevTools Protocol, no Playwright.
What can you do with familiar mcp?
familiar
Control your real macOS Chrome via AppleScript โ no DevTools Protocol, no Playwright.
A Claude Code skill that drives Google Chrome on macOS through AppleScript (Apple Events). It uses your everyday browser instead of a headless/automated one, so pages behind bot/WAF defenses tend to treat it as a normal user.
ๆฅๆฌ่ช็ใฏ README.ja.md ใๅ็ งใใฆใใ ใใใ
What it does
Everything is tab-scoped (windowId + tabId); it never relies on the "active tab".
list_tabs/new_tab/new_incognito_tab/close_tabโ tab management (new_tab uses a normal window, new_incognito_tab an incognito one)active_tab/window_mode/is_loadingโ inspect active tab / window mode / tab loading statenavigate/get_tab_urlโ navigationreload/go_back/go_forward/stopโ history & reload controlwait_for_load/wait_for_selector/wait_for_functionโ wait for page load / element / a JS conditionget_htmlโ get the current DOM as HTMLget_text/get_attribute/get_value/exists/query_allโ read element text / attribute / value / presence / all matchesclick/fill/clear/select_option/set_checked/press_key/submit/scroll_into_viewโ interact with elements and formsexecute_js/execute_js_fileโ run arbitrary JavaScript (use the file form for complex scripts)
Selectors accept CSS (default), text=, xpath=, and label= forms.
Prerequisites
- macOS with Google Chrome
- Enable Chrome's "Allow JavaScript from Apple Events" (View โ Developer โ Allow JavaScript from Apple Events)
- Approve the Automation permission prompt on first run
Install
Claude Code plugin
/plugin marketplace add dominion525/familiar
/plugin install familiar@familiar
For local development / testing:
/plugin marketplace add /path/to/familiar
/plugin install familiar@familiar
Vercel Skills (agent-skills)
npx skills add dominion525/familiar
This places the skill under ~/.agents/skills/familiar/. Any client that follows the
agent-skills spec (Claude Code, Cursor, and
others) picks it up automatically. The registry is at https://skills.sh.
MCP server
The mcp/ directory contains an MCP server implementation (TypeScript) that
exposes the same 32 actions to any MCP-compatible client (Claude Code, Claude
Desktop, Cursor, Codex CLI, and others).
Quick install (Claude Code):
claude mcp add familiar -- npx @dominion525/familiar-mcp@latest
See mcp/README.md for full per-client install and configuration.
Standalone (no install)
The script also runs standalone, without installing the skill:
osascript skills/familiar/familiar.applescript list_tabs
See skills/familiar/SKILL.md for full usage.
License
MIT
Install
Add familiar mcp to your client. Pick the one you use.
claude mcp add familiar-mcp -- npx -y @dominion525/familiar-mcpcodex mcp add familiar-mcp -- npx -y @dominion525/familiar-mcpamp mcp add familiar-mcp -- npx -y @dominion525/familiar-mcp{
"mcpServers": {
"familiar-mcp": {
"command": "npx",
"args": [
"-y",
"@dominion525/familiar-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"familiar-mcp": {
"command": "npx",
"args": [
"-y",
"@dominion525/familiar-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"familiar-mcp","command":"npx","args":["-y","@dominion525/familiar-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"familiar-mcp": {
"command": "npx",
"args": [
"-y",
"@dominion525/familiar-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"familiar-mcp": {
"command": "npx",
"args": [
"-y",
"@dominion525/familiar-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"familiar-mcp": {
"command": "npx",
"args": [
"-y",
"@dominion525/familiar-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"familiar-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@dominion525/familiar-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"familiar-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@dominion525/familiar-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @dominion525/familiar-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance16/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 68 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | Jun 25, 2026 |
| 0.1.1 | Jun 22, 2026 |