Skip to main content
Glama
jfjensen

camofox-browser MCP server (stage2)

by jfjensen

fetch_urls

Extract all links from a webpage as deduplicated absolute URLs with visible labels. Use to discover next steps or analyze page outbound connections.

Instructions

Fetch a webpage and return the links on it as a list of {text, url} pairs, where text is the link's visible label and url is the absolute target.

Use this when you need to navigate from a page: to find which link to follow next, or to see what a page links out to. The list is deduplicated and the URLs are made absolute, so you can pass any of them straight to another tool.

Args: url: The full URL to read links from. user_id: Optional, same semantics as for fetch_snippet.

Returns: A JSON array of {"text": ..., "url": ...} objects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
user_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

No annotations are provided, so the description carries full burden. It discloses that URLs are made absolute and deduplicated, which is key behavioral detail. It does not mention rate limits or auth, but as a read operation these are less critical.

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?

The description is concise and well-structured: purpose first, then usage guidance, then args, then returns. Every sentence adds value with no redundancy.

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

Completeness4/5

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

Given the simple parameters and presence of an output schema, the description is reasonably complete. It explains the return format, but could mention edge cases like empty link lists.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must fill the gap. It explains 'url' as 'The full URL to read links from' and 'user_id' as optional with reference to another tool. This provides meaningful context beyond the schema alone.

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?

The description clearly states the tool's action ('Fetch a webpage and return the links'), specifies the output format ('list of {text, url} pairs'), and distinguishes its use from siblings like fetch_snippet by focusing on navigation and link discovery.

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

Usage Guidelines4/5

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

The description explicitly states when to use it: 'when you need to navigate from a page... to find which link to follow next, or to see what a page links out to.' It does not explicitly mention alternatives or when not to use, but the context is clear enough for the agent to infer.

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