Arc Browser MCP
Provides tools for inspecting and controlling Arc Browser spaces, tabs, and history on macOS, including reading sidebar data, creating/navigating/closing tabs, focusing spaces, and optionally executing JavaScript in tabs.
Click on "Deploy 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., "@Arc Browser MCPlist tabs in my Research space"
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.
Arc Browser MCP
Arc Browser MCP is a local stdio MCP server for inspecting and controlling Arc Browser Spaces and tabs on macOS.
It gives MCP clients such as Codex, Claude Code, opencode, and Claude Desktop a structured way to read Arc's local sidebar/history data and perform explicit Arc actions like focusing Spaces, selecting tabs, creating tabs, navigating tabs, reloading tabs, closing tabs, and optionally executing JavaScript.
Why This Exists
I built this because my Arc setup had become a very specific kind of personal knowledge system: lots of tabs, spread across lots of Spaces, quietly standing in for bookmarks, reading lists, project context, and things I was definitely going to deal with later.
That works until it does not. Once the browser becomes both workspace and storage, it gets hard to tell what is still useful, what is duplicated, what belongs in a second brain, and what can finally be closed. Arc Browser MCP makes that state legible to local agents so they can help inspect, search, organize, summarize, save, and clean up tabs with explicit user-controlled actions.
Arc automation is useful for focused browser actions, but it is not the best source for a complete, background-safe inventory of Spaces, folders, pinned and unpinned tabs, and history. In local testing with my Arc profile, reading all tabs through Arc automation could take up to 30 seconds; reading the same state from Arc's local JSON files took less than 10 ms, over 3,000x faster. Mutations use Arc automation because those changes take effect immediately without requiring a browser restart.
Related MCP server: arc-mcp
Tools
The server exposes compact v2 tools grouped by behavior. Read tools inspect local Arc data and do not intentionally change visible browser state. Create, edit, and delete tools automate Arc and can change what is visible in the browser.
Read Tools
Tool | Description |
| Returns a compact inventory of Arc Spaces, tab counts, pinned/unpinned counts, folder counts, missing URL counts, duplicate counts, and source warnings. |
| Lists, filters, and searches active Arc tabs using the local Arc index. Supports |
| Returns a full normalized tab record for an explicit |
| Returns the Space, pinned, unpinned, and folder hierarchy. Set |
| Searches local Arc Chromium history snapshots across profiles. Supports |
| Analyzes tabs for |
Create Tools
Tool | Description |
| Creates a new tab in an explicit Arc Space. Requires |
Edit And Navigation Tools
Tool | Description |
| Focuses an Arc Space by explicit |
| Selects an Arc tab by explicit |
| Navigates a specific tab when |
| Reloads one or more tabs by explicit |
| Executes JavaScript in an explicit tab. Disabled by default and available only when |
Delete Tools
Tool | Description |
| Closes one or more tabs by explicit |
Find duplicate tabs:
{
"analyses": ["duplicates"],
"limit": 25,
"include_evidence": true
}Search tabs in a Space:
{
"query": "docs",
"space_id": "space-id",
"limit": 20
}Create a tab in a known Space:
{
"space_id": "space-id",
"url": "https://example.com",
"select": true
}Preview closing tabs:
{
"tab_ids": ["tab-id-1", "tab-id-2"],
"dry_run": true
}Close tabs after review:
{
"tab_ids": ["tab-id-1", "tab-id-2"],
"dry_run": false
}Quick Start
Requirements:
macOS
Arc installed at
/Applications/Arc.appPython 3.12 or newer
uv/uvxA local stdio MCP client
macOS Automation permission for the MCP client or terminal app when using mutating tools
Run the server directly:
uvx arc-browser-mcpRun a local prerequisite check:
uvx arc-browser-mcp doctorInstallation
codex mcp add arc-browser -- uvx arc-browser-mcpclaude mcp add --transport stdio --scope user arc-browser -- uvx arc-browser-mcpAdd this server entry to ~/.config/opencode/opencode.json or a project
opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"arc_browser": {
"type": "local",
"command": ["uvx", "arc-browser-mcp"],
"enabled": true,
"timeout": 10000
}
}
}For local development, add this to the Claude Desktop MCP config:
{
"mcpServers": {
"arc-browser": {
"command": "uvx",
"args": ["arc-browser-mcp"],
"env": {}
}
}
}For end users, prefer a Claude Desktop Extension / DXT package. This repository includes MCPB packaging metadata for that workflow:
npm install -g @anthropic-ai/mcpb
mcpb packFrom a checkout of this repository:
uv sync
uv run arc-browser-mcp doctor
uv run arc-browser-mcp serveFor a local MCP client config that runs from source, use:
uv run arc-browser-mcpor:
uv run arc-browser-mcp serveYou can also print client-specific install guidance:
uvx arc-browser-mcp install --client codex
uvx arc-browser-mcp install --client claude-code
uvx arc-browser-mcp install --client opencode
uvx arc-browser-mcp install --client claude-desktopSafety And Privacy
The server is local and communicates with MCP clients over stdio.
Read tools may return private browser data to the connected MCP client, including titles, URLs, domains, Space names, folder names, profile IDs, history metadata, and local source paths.
The server does not send browser data anywhere by itself. Your MCP client and its model provider receive whatever data they request through tool calls.
Mutating tools change visible Arc state, including focused Spaces, selected tabs, newly created tabs, opened URLs, reloaded tabs, and closed tabs.
Destructive actions require explicit tab IDs.
arc_close_tabsalso supportsdry_run.arc_create_tabrequires an explicit Space ID and verifies the created tab before returning its ID.arc_execute_javascriptis disabled unlessARC_MCP_ENABLE_JAVASCRIPT=1is set in the MCP server environment.The server does not directly edit Arc sidebar, archive, command ranking, or history files. Changes go through Arc automation instead.
Reference
Less common setup, debugging, and development details live here.
arc-browser-mcp serve
arc-browser-mcp doctor
arc-browser-mcp smoke --read-only
arc-browser-mcp install --client codex
arc-browser-mcp install --client claude-code
arc-browser-mcp install --client opencode
arc-browser-mcp install --client claude-desktopserve runs the MCP server over stdio. Running arc-browser-mcp without a
subcommand also starts the server.
doctor checks macOS, osascript, uvx, and the expected Arc app location.
smoke --read-only runs live read-only checks against local Arc state. It does
not call mutating tools.
install --client ... prints MCP configuration guidance for a supported client.
Arc Is Not Running
Mutating tools and live Arc reads through AppleScript/JXA require Arc to be running. Open Arc and retry the tool call.
macOS Automation Permission Is Denied
If Arc actions fail with an automation or permissions error, open macOS System Settings and check the Automation and Privacy & Security permissions for the terminal or MCP client that launches this server.
uvx Is Missing
Install uv from the official installer or package manager you use, then rerun:
arc-browser-mcp doctorJavaScript Execution Is Disabled
arc_execute_javascript intentionally fails unless enabled:
ARC_MCP_ENABLE_JAVASCRIPT=1 uvx arc-browser-mcpOnly enable this in a client configuration where you are comfortable allowing explicit JavaScript execution in browser tabs.
Multiple Arc Windows
Some tools accept window_id. Use arc_get_overview, arc_query_tabs, or a
client-visible tab record to identify Space and tab IDs first. When creating a
tab and more than one Arc window is open, pass window_id when you need the tab
created in a specific window.
Set up the local environment:
uv syncRun tests and linting:
uv run pytest
uv run ruff check .Run local checks against Arc:
uv run arc-browser-mcp doctor
uv run arc-browser-mcp smoke --read-onlyRun the server from source:
uv run arc-browser-mcp serveManual live verification steps are documented in
docs/manual-verification.md.
The repository includes manifest.json and .mcpbignore for MCPB packaging:
npm install -g @anthropic-ai/mcpb
mcpb packLicense
MIT. See LICENSE.
Available Tools
13 toolsarc_analyze_tabsARead-onlyIdempotent
Analyze Arc tabs for duplicates, stale tabs, junk candidates, and missing URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| analyses | Yes | ||
| limit | No | ||
| include_evidence | No | ||
| stale_before | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, covering safety. The description adds the types of analysis but does not disclose other behavioral traits (e.g., performance implications, data sources). It provides moderate added value beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, concise sentence that front-loads the core purpose and lists key analysis types. No unnecessary words; every part adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema (not shown), the description does not explain return value format or how to use analysis results. Parameters are largely unexplained. For a tool with 4 params and 0% schema coverage, the description is insufficient for complete understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. While 'duplicates, stale tabs, etc.' hint at possible values for the 'analyses' parameter, there is no explanation of what each analysis type does, nor descriptions for 'limit', 'include_evidence', or 'stale_before'. The description adds minimal semantic value for parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Analyze' and the resource 'Arc tabs', and lists specific analysis types (duplicates, stale tabs, junk candidates, missing URLs), distinguishing it from sibling tools like arc_query_tabs or arc_get_tab which are for retrieval rather than analysis.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives such as arc_query_tabs or arc_get_overview. The intended use for analysis is implied but not contrasted with other tools, leaving the agent without clear selection criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_close_tabsADestructive
Close one or more Arc tabs by explicit tab id. Use dry_run to preview.
| Name | Required | Description | Default |
|---|---|---|---|
| tab_ids | Yes | ||
| dry_run | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description indicates the tool is destructive (close) and offers a dry_run option to preview, adding behavioral context beyond the annotations (destructiveHint=true, readOnlyHint=false). It does not elaborate on other behaviors like error handling or undo.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two sentences: the first states the main purpose, the second adds key functionality. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema and simple functionality, the description covers the essential action and preview feature. It could mention edge cases (e.g., invalid IDs) but is adequate for typical use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description should compensate but only mentions tab_ids generically and dry_run as 'preview'. It does not explain the format of tab_ids or the exact effect of dry_run, leaving ambiguity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (close), the resource (Arc tabs), and the method (by explicit tab id). It also mentions the dry_run feature for preview. This distinguishes it from siblings like arc_create_tab or arc_select_tab.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description advises using dry_run to preview, which is useful, but it does not provide guidance on when to use this tool versus alternatives (e.g., arc_reload_tabs) or mention any prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_create_tabC
Create a new Arc tab in an explicit Space and return its verified tab id.
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes | ||
| url | Yes | ||
| window_id | No | ||
| select | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate mutation (readOnlyHint=false) and non-destructive, non-idempotent behavior. The description adds that it returns a verified tab id, but does not disclose other behavioral traits like whether the tab is activated or what 'select' parameter does.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no extraneous words. It is efficient but sacrifices completeness for brevity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 4 parameters, 0% schema coverage, and an output schema, the description is too sparse. It fails to explain parameter semantics, return value structure, or how it differs from similar tools like arc_open_url.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, but the description does not explain any parameters beyond implying space_id and url. The optional parameters window_id and select are not described, leaving the agent without necessary semantic context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool creates a new Arc tab in a specific space and returns a verified tab id. It uses a specific verb and resource. However, it does not explicitly differentiate from sibling tools like arc_open_url, which might also create a tab.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives such as arc_open_url or arc_select_tab. The description lacks any 'when not to use' or context for conditional use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_execute_javascriptB
Execute JavaScript in an Arc tab. Disabled unless ARC_MCP_ENABLE_JAVASCRIPT=1.
| Name | Required | Description | Default |
|---|---|---|---|
| tab_id | Yes | ||
| javascript | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false and destructiveHint=false. The description adds no further behavioral context, such as potential side effects or permissions needed. The bar is lower due to annotations, but the description could be improved.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that directly states the purpose and a key prerequisite. It is concise and front-loaded, but it omits important parameter details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of executing JavaScript (with potential side effects, error handling, and output) and the existence of an output schema, the description is too minimal. It does not explain return values, error conditions, or how to use parameters effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description provides no information about the two parameters (tab_id and javascript) beyond what the schema already shows. No meaning or usage hints are added.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Execute' and the resource 'JavaScript in an Arc tab'. It is specific and distinct from sibling tools like arc_open_url or arc_analyze_tabs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions that the tool is disabled unless ARC_MCP_ENABLE_JAVASCRIPT=1, which is a prerequisite but does not provide guidance on when to use this tool versus alternatives or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_focus_spaceB
Focus an Arc Space by explicit id. This changes visible Arc state.
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that it changes visible state, which adds context beyond annotations. No mention of prerequisites, side effects, or error conditions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no fluff, front-loaded with the main purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Minimal description for a tool with one parameter and output schema. Lacks details on how to obtain space_id or what the output represents.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Does not explain the 'space_id' parameter at all. With 0% schema description coverage, the description should compensate but does not.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states action (focus), resource (space), and method (by explicit id). Distinct from sibling tools which deal with tabs or overview.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides no guidance on when to use this tool versus alternatives. However, the purpose is straightforward, so it's minimally adequate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_get_overviewARead-onlyIdempotent
Get compact Arc inventory, counts, source health, and live context when available.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, destructiveHint, and idempotentHint. Description adds minimal context (e.g., 'when available' for live context) but does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with no wasted words. Front-loaded with key purpose, highly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With zero parameters and an output schema present, the description fully specifies the tool's purpose and output. No gaps in coverage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so baseline is 4. Description adds value by outlining what the output contains (inventory, counts, etc.), going beyond schema requirements.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description explicitly states 'Get compact Arc inventory, counts, source health, and live context', providing a specific verb and resource. It clearly distinguishes from sibling tools which focus on tabs or other actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or alternatives are provided. The description implies it's for a quick, read-only overview, but lacks guidance on when not to use it versus other tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_get_sidebar_treeARead-onlyIdempotent
Get Arc Space, pinned, unpinned, and folder hierarchy.
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | No | ||
| include_tabs | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. Description adds context about hierarchy components (pinned, unpinned, folders), which is useful beyond annotations. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no fluff, effectively communicates the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequate for a read-only tool with output schema, but could be improved by noting the hierarchical nature of the return value or parameter defaults.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Description provides no information about the two parameters (space_id, include_tabs) beyond the input schema. With 0% schema coverage, the description fails to compensate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states verb 'Get' and resource 'Arc Space, pinned, unpinned, and folder hierarchy', distinguishing it from sibling tools like arc_analyze_tabs or arc_get_overview.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage when needing sidebar hierarchy, but no explicit when-to-use, when-not-to-use, or alternative tools guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_get_tabARead-onlyIdempotent
Get a full normalized Arc tab record by explicit tab id.
| Name | Required | Description | Default |
|---|---|---|---|
| tab_id | Yes | ||
| include_recovery | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare the tool as readOnly, destructive=false, idempotent=true. The description adds that the record is 'full normalized,' indicating comprehensive data. It does not contradict annotations and adds context beyond the structured fields.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently conveys the tool's purpose. Every word is meaningful and there is no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (2 params, output schema present), the description is minimally adequate. However, it does not explain what 'full normalized' entails or clarify when to use 'include_recovery'. The output schema exists, which helps, but the description could be more helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description only indirectly covers the 'tab_id' parameter by mentioning 'by explicit tab id'. The 'include_recovery' parameter (default false) is not explained at all. The description does not sufficiently compensate for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and the resource ('full normalized Arc tab record') with a specific retrieval method ('by explicit tab id'). It distinguishes from sibling tools like arc_query_tabs (searching) and arc_select_tab (selecting) by focusing on a single tab via ID.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when a specific tab ID is known, but it does not explicitly state when to use this tool over alternatives (e.g., arc_query_tabs for filtering or arc_get_overview for summary). No guidance on prerequisites or exclusions is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_open_urlB
Navigate a specific Arc tab, or the active tab when explicitly omitted.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| tab_id | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=false, aligning with the navigational modification. The description adds the behavior of falling back to the active tab when tab_id is omitted, but doesn't disclose potential side effects like page load behavior or error handling for invalid tab IDs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence of 12 words. Every word is necessary; no redundancy or verbosity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema and sibling tools, the description covers the basic action but lacks details on navigation semantics (e.g., whether it changes the current page URL, any loading behavior). It is adequate but not comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The parameter descriptions are missing from the schema (0% coverage). The description clarifies that tab_id defaults to the active tab, which adds meaning. However, it does not specify URL format or constraints (e.g., must be valid URL).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it navigates an Arc tab to a URL, specifying the active tab as fallback. It distinguishes from siblings like arc_create_tab (which likely creates a new tab) but could be more explicit about differentiating creation vs navigation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives. The description implies it is for navigating existing tabs, but fails to mention that arc_create_tab should be used for new tabs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_query_tabsBRead-onlyIdempotent
List, filter, and search Arc tabs using the fast local Arc index.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | ||
| space_id | No | ||
| location | No | ||
| folder_id | No | ||
| domain | No | ||
| missing_url | No | ||
| duplicate_key | No | ||
| limit | No | ||
| cursor | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, non-destructive, and idempotent behavior. The description adds 'fast local Arc index' hinting at performance but does not disclose pagination, result limits, or other behavioral traits beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence that front-loads the key action and resource. It is appropriately concise, though it could be slightly more structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 9 optional parameters and a complex output schema, the description lacks essential context about how to use the filters, what the return data looks like, and any default behavior (e.g., limit of 50). It is insufficient for an agent to understand the tool's full capability.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain parameter meanings. It only says 'list, filter, and search' without mentioning any of the 9 parameters (query, space_id, location, etc.), leaving the agent with no semantic clues.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the action (list, filter, search), the resource (Arc tabs), and distinguishes from siblings like arc_get_tab which retrieves a single tab. It also notes the use of a fast local index.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool over alternatives such as arc_get_tab or arc_search_history. The description does not mention context or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_reload_tabsA
Reload one or more Arc tabs by explicit tab id.
| Name | Required | Description | Default |
|---|---|---|---|
| tab_ids | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are present but neutral (readOnlyHint=false, destructiveHint=false, idempotentHint=false). The description does not add behavioral details beyond the word 'reload', such as whether it clears cache or loses unsaved form data. For a simple action, minimal disclosure is acceptable but not excellent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no extraneous words. It is efficiently structured, but could slightly expand on usage without losing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one required parameter and an output schema (not detailed), the description is minimally adequate. However, given the context of 13 sibling tools, a bit more guidance on where to find tab IDs or expected behavior would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description carries the full burden. It only says 'by explicit tab id', which adds minimal meaning over the schema's property name 'tab_ids'. Agents are left to infer the format or source of tab IDs without guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'reload', the resource 'Arc tabs', and the method 'by explicit tab id'. It distinguishes this tool from siblings like arc_close_tabs and arc_create_tab, making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no explicit guidance on when to use this tool versus alternatives like arc_open_url or arc_execute_javascript. While the purpose is clear, the lack of context for selecting this tool among siblings is a gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_search_historyCRead-onlyIdempotent
Search Arc Chromium history snapshots across local profiles.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | ||
| domain | No | ||
| profile_id | No | ||
| include_hidden | No | ||
| limit | No | ||
| cursor | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, non-destructive, idempotent behavior. The description adds that it searches 'across local profiles,' which is useful but does not elaborate on additional behavioral traits like pagination (cursor) or handling of hidden history. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence is concise but overly minimal. It front-loads the core action but omits any structure for parameter details, which should be included or referenced given the schema lacks descriptions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the description fails to cover six parameters with no schema descriptions. The agent lacks information on how to use filtering, pagination, or hidden results, making the tool insufficiently documented for effective selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description must explain parameters but only mentions 'profiles' implicitly. Parameters like query, domain, cursor, include_hidden, and limit remain entirely unexplained, forcing the agent to rely on defaults and guesswork.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches 'Arc Chromium history snapshots across local profiles,' specifying both the resource (history snapshots) and scope. This distinguishes it from sibling tools like arc_query_tabs which operate on tabs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus others, such as arc_query_tabs or arc_focus_space. There is no mention of prerequisites, limitations, or alternatives, leaving the agent without context for appropriate invocation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
arc_select_tabB
Select an Arc tab by explicit id. This changes visible Arc state.
| Name | Required | Description | Default |
|---|---|---|---|
| tab_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate non-read-only (readOnlyHint=false), and the description adds that it changes visible Arc state, which aligns. However, it does not disclose behavior on invalid IDs or other side effects. With annotations present, the description provides minimal extra value.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no wasted words. The primary purpose is front-loaded: 'Select an Arc tab by explicit id.' The behavioral effect is succinctly appended. Ideal for quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity (1 required param, no enums, output schema exists), the description covers the basic purpose and effect. However, it lacks usage context, such as when to choose this over arc_focus_space, and does not describe the output. Thus, minimally adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The lone parameter tab_id has 0% schema description coverage. The description mentions 'by explicit id' but does not explain what constitutes an id, its format, or how to obtain one. This leaves the agent underinformed about the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool selects an Arc tab by explicit id and that it changes visible state. This precisely defines the action and differentiates it from sibling tools like arc_analyze_tabs or arc_query_tabs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives (e.g., arc_focus_space, arc_get_tab). It doesn't mention prerequisites, conditions, or when not to use it, leaving the agent without decision context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
13 tool updates
v0.1.0- First observed
arc_analyze_tabs - First observed
arc_close_tabs - First observed
arc_create_tab - First observed
arc_execute_javascript - First observed
arc_focus_space - First observed
arc_get_overview - First observed
arc_get_sidebar_tree - First observed
arc_get_tab - First observed
arc_open_url - First observed
arc_query_tabs - First observed
arc_reload_tabs - First observed
arc_search_history - First observed
arc_select_tab
TDQS
Scored across 13 tools
Each tool targets a distinct operation: analyze, close, create, execute JS, focus space, get overview, get sidebar tree, get tab, open URL, query tabs, reload tabs, search history, select tab. No overlapping purposes; an agent can clearly differentiate based on names and descriptions.
All tools follow the consistent pattern `arc_verb_noun` with snake_case. Verbs are appropriately chosen (e.g., create, close, query, select) and nouns match the resource (tab, tabs, space, url). Singular/plural variations are logically applied.
13 tools is well-scoped for a browser automation server. Each tool serves a clear purpose without redundancy, covering tab lifecycle, space navigation, and basic utility like history search and JavaScript execution.
The tool set covers core tab and space operations (CRUD, navigation, analysis, history). Missing features like bookmark management or space creation are minor gaps, but the surface is sufficient for typical automation tasks.
Maintenance
Related MCP Connectors
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to i…
Web search and page-reading for AI agents. One-click OAuth connect, or a Caesar API key.
Hyperbrowser MCP — wraps the Hyperbrowser AI-agent browsing API
Related MCP Servers
- FlicenseAqualityDmaintenanceAn MCP server for the Arc browser that enables programmatic management of spaces and tabs. It supports actions like listing, creating, and deleting spaces and tabs, as well as focusing spaces and opening URLs via AppleScript.99 npm6-
- FlicenseNot gradedqualityCmaintenanceEnables semantic browser automation for the Arc browser, allowing users to perform web tasks like searching, shopping, and data extraction through natural language commands.1-
- AlicenseAqualityBmaintenanceAccess and organize your open browser tabs, bookmarks, and recently visited links across every macOS browser from your AI client. Powered by the free tier of SupaSidebar(https://supasidebar.com) app.3699 npm5MIT
- AlicenseAqualityBmaintenanceEnables macOS system automation, window management, and productivity tools for AI agents, including running AppleScripts, opening apps, retrieving browser tabs, taking screenshots, and controlling system settings.21MIT