清空网络缓冲
network_clearClears the network request records buffered in the current browser session, so you can inspect only new traffic.
Instructions
清空当前会话缓冲的网络请求记录。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
network_clearClears the network request records buffered in the current browser session, so you can inspect only new traffic.
清空当前会话缓冲的网络请求记录。
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the behavioral burden. It does disclose the key scoping fact – only records in the current session buffer are destroyed – but omits that the operation is irreversible, whether it affects an in-progress capture, and whether a count or confirmation is returned.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single short sentence that front-loads the verb and scope with zero filler. Nothing redundant or padded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, no-output-schema utility, the description covers what is cleared and where. The only meaningful gap is the absence of any warning that the clear is destructive and unrecoverable in an environment with no annotations to signal this.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so there is nothing for the description to disambiguate; the baseline of 4 applies. The description correctly implies no arguments are needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (清空/clear) and a precise resource (当前会话缓冲的网络请求记录 – network request records buffered in the current session), which is distinct from siblings like network_list or network_detail. It does not explicitly name the complementary tools, but the action is unambiguous from name plus description.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to call this versus alternatives such as console_clear, nor any prerequisites or caution about clearing after a capture. Usage is only implied by the verb.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.