Skip to main content
Glama
webuplink-dev

@webuplink/mcp

browse

Open a URL to start a browser session or continue with a session ID, then execute one or multiple tools on the page to automate actions and extract needed content.

Instructions

Browse a web page or execute tools on a page. Use url to open a new session, or session_id to continue an existing session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoURL to open a new browser session
toolNoTool name to execute on the page
toolsNoArray of tools to execute in sequence (batch)
paramsNoParameters for the tool
session_idNoExisting session ID to continue browsing
include_page_contentNoInclude detailed page content analysis

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions session opening and continuation, but it does not disclose side effects of executing tools on a page, whether actions can mutate state, what happens to a session, or what output the caller should expect.

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?

Two sentences with no filler. The primary browsing purpose is front-loaded, and the session-handling distinction is stated immediately and efficiently.

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

Completeness3/5

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

The description plus schema provides a workable overview, but important context is missing: how tool/tools/params interact, what include_page_content affects, what executing tools returns, and any session lifecycle details. With no output schema and no annotations, this leaves the agent to infer a fair amount.

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?

The input schema already covers each parameter at 100%, so the baseline is 3. The description adds value by explaining the relationship between url and session_id (new session vs existing session) and framing tool/tools/params as actions executed on the page, which goes slightly beyond individual schema descriptions.

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

Purpose4/5

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

The description clearly states the tool browses web pages and executes tools on a page, and it distinguishes session-opening behavior from the sibling close_session via 'open a new session' and 'continue an existing session.' However, it does not explicitly name the sibling or draw an explicit contrast with closing a session.

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

Usage Guidelines3/5

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

The description gives explicit guidance on when to use url versus session_id, which is useful. It does not, however, discuss when to prefer close_session, when not to use browse, or any prerequisites or constraints around executing tools on a page.

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

Deploy Server

Other Tools