Skip to main content
Glama

playwright_navigate

Opens a URL in a browser and returns the page title and HTTP status code. Provides a fallback when Playwright is not available.

Instructions

浏览器导航——打开 URL 并返回页面标题/状态码。Playwright 不可用时降级。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNo目标 URL

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It does disclose useful behavior: returns page title/status code and degrades when Playwright is unavailable. However, it does not mention load-wait behavior, error handling for unreachable URLs, or whether the navigation can trigger side effects.

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 a single compact sentence that front-loads the action and output, followed by a relevant fallback note. Every clause earns its place and there is no redundant filler.

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?

For a simple one-parameter tool with no output schema or annotations, the description covers the core behavior and return values. It could be slightly more complete by describing the return format or timeout behavior, but nothing critical is missing for basic invocation.

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

Parameters3/5

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

The schema description coverage is 100% and the single parameter 'url' is already described as '目标 URL'. The tool description adds no additional format, validation, or usage details beyond the schema, so the baseline of 3 applies.

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 states a specific action ('打开 URL' – open URL) and the concrete outputs it returns (page title/status code). This distinguishes it from sibling tools like playwright_click, playwright_screenshot, and playwright_assert, which perform different browser actions.

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?

Usage is implied by the term '浏览器导航' and the description of opening a URL and returning title/status. However, there is no explicit guidance about when to prefer this tool over the other Playwright siblings, nor any exclusions or alternative conditions.

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