Skip to main content
Glama
jfjensen

camofox-browser MCP server (stage2)

by jfjensen

open_tab

Open a webpage in a persistent browser tab to enable interactive actions like clicking, typing, and form submission. Returns a tab_id for subsequent operations.

Instructions

Open a webpage in a persistent browser tab and return a tab_id handle.

Use this ONLY when you need to interact with the page (click a link or button, type into a field, submit a form). For plain reading, prefer the URL-first tools (fetch_snippet, summarize, extract, fetch_urls, fetch_structure), which do not need a tab handle.

The tab stays open across calls so you can act on it. After opening, call read_tab(tab_id) to see the page and its interactive element refs. Close the tab with close_tab(tab_id) when you are finished.

Args: url: The full URL to open (must include http:// or https://).

Returns: JSON with the tab_id, the settled url, and the element ref count.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Details behavioral traits: tab persists across calls, need to read_tab to see content, close_tab when finished. Also describes return value (tab_id, settled url, element ref count). No contradictions with missing annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Concise and well-structured: opens with purpose, follows with usage guidance, then parameter description, then return value. Every sentence adds value; no unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Fully addresses the tool's purpose, usage context, parameter constraint, behavioral lifecycle, and return value. Given the simplicity (1 param, output schema exists), the description is complete and leaves no ambiguity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Adds essential constraint beyond the schema ('must include http:// or https://'). With 0% schema coverage, the description fully compensates by explaining the parameter's meaning and requirement.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the action ('Open a webpage in a persistent browser tab and return a tab_id handle') and distinguishes from sibling tools by specifying when to use (for interaction) versus when to prefer other tools (plain reading).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly provides when to use (interact with the page) and when not to (plain reading), listing specific alternative tools (fetch_snippet, summarize, etc.) and the required next steps (read_tab, close_tab).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/jfjensen/local-LLM-agent-mcp-interaction'

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