Skip to main content
Glama
hooplus1ce

DrissionPage-MCP

by hooplus1ce

启动浏览器

browser_launch

Launches a new browser instance with configurable options such as headless mode, incognito, custom arguments, and user data path for web automation.

Instructions

启动一个新的浏览器实例(自动分配调试端口)。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
headlessNo是否无头模式
argumentsNo附加的 Chromium 启动参数,如 ["--lang=zh-CN"]
incognitoNo是否无痕模式
browser_pathNo浏览器可执行文件路径,默认使用系统 Chrome
user_data_pathNo用户数据目录(持久化登录态时指定)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindYeslaunched=本服务启动, connected=接管已有浏览器
addressYes
tab_idsNo
is_aliveYes
browser_idYes
context_idsNo
is_headlessNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior2/5

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

Only mentions automatic debug port allocation; does not disclose side effects such as spawning a separate process, resource usage, or impact on existing browser sessions. The annotation only provides readOnlyHint: false, so the description adds minimal behavioral transparency.

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, clear sentence with no unnecessary words. The action is front-loaded and the structure is efficient.

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 omits any mention of the return value or how the launched instance can be referenced by other tools. It also does not state that launching is a prerequisite for other browser operations, reducing completeness given the surrounding sibling tools.

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 input schema already provides descriptions for all five parameters, so the baseline is 3. The tool description adds no additional context or clarification about how parameters affect the launch behavior.

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 verb 'launch' and the resource 'browser instance', with a specific detail about automatic debug port allocation. It effectively distinguishes this tool from siblings like browser_connect.

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 implies use for new instances but does not explicitly compare with browser_connect or state prerequisites. No direct guidance is given on when to prefer this tool over alternatives.

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