Skip to main content
Glama

open_site

Navigate to any Infinite Backlog page in Chromium; use a visible window to log in when needed.

Instructions

Navigate to a page on infinitebacklog.net. Pass headless=false for a visible window so you can log in.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNo/
wait_msNo
headlessNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does disclose one genuine behavioral trait: headless=false opens a visible window enabling login. It omits other important traits such as whether navigation replaces the current page, how the browser session is shared, or timeout/error behavior.

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 short sentences, purpose front-loaded and the parameter tip placed second. No filler or redundancy; every sentence earns its place.

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?

An output schema exists, so return-value explanation is not required, and the navigation target plus login hint cover the basics. For a browser-automation entry point with zero annotation coverage, though, more on session behavior and parameter meaning would be needed to be fully complete.

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

Parameters2/5

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

Schema coverage is 0%, so the description must compensate. It explains the headless flag's purpose well, but leaves 'path' (presumably relative to infinitebacklog.net) and 'wait_ms' (its purpose and units) entirely undocumented, so two of three parameters remain opaque.

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?

States a specific verb (navigate) and resource (a page on infinitebacklog.net), which clearly distinguishes it from read-only siblings like get_page_text or get_links and from action tools like click/fill. It stops short of explicitly naming the browsers it doesn't cover or the alternative (run_browser_use_task).

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 second sentence gives one implicit usage rule ('pass headless=false ... so you can log in'), which hints at a login-then-other-tools workflow. However, there is no explicit when-to-use guidance relative to siblings like run_browser_use_task or click, and no when-not guidance.

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