Skip to main content
Glama

列出网络请求

network_list

List captured network requests and filter them by URL keyword, HTTP method, resource type, status code, or show only failed/4xx/5xx requests.

Instructions

列出捕获到的网络请求,可按 URL 关键字、方法、资源类型、状态码过滤,也可只看失败或 4xx/5xx。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNo资源类型:document/script/xhr/fetch/image 等
limitNo最多返回条数,默认 200
sinceNo仅返回该时间戳之后的请求
methodNoHTTP 方法,如 GET/POST
searchNoURL 包含匹配
statusNo状态码,或 failed/error 表示只要失败
targetIdNo
failuresOnlyNo只要加载失败的请求
httpErrorsOnlyNo只要 4xx/5xx

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description must carry the full behavioral burden. '捕获到的' implies data comes from an active capture, and it discloses the available filter modes including failure/4xx/5xx subsets, which is useful context. However, it omits pagination behavior, default limits, and return shape for a 9-parameter read tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single well-formed sentence with the core action front-loaded and filters enumerated efficiently. No wasted clauses, though it leaves useful detail unstated.

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?

For a 9-parameter tool with no annotations and no output schema, the description covers the main filter parameters but is silent on time-range (since), result cap (limit), and pagination. Adequate but with clear gaps for an agent to call it precisely.

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?

Schema description coverage is 89%, so the schema already documents nearly every parameter. The description restates the filter dimensions (URL, method, type, status, failure flags) but adds no format or syntax detail and never mentions limit, since, or targetId. Baseline 3 applies when schema does the heavy lifting.

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 ('列出' / list) and resource ('网络请求' / network requests), and the filtering scope is described concretely. It implicitly separates itself from sibling network_detail (single request) and network_clear, but does not name any sibling explicitly.

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

Usage Guidelines2/5

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

The description explains what can be filtered but gives no guidance on when to choose this over network_detail, network_body, or network_clear. No prerequisites (e.g. that a capture must be running) or exclusions are stated.

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