WebMCP

DeveloperWebMCP verified

analytics-dashboard WebMCP tools

Chrome Labs analytics dashboard demo

1 tools1 methodsspec API surface

What can an agent do with analytics-dashboard WebMCP tools?

Chrome Labs analytics dashboard demo This page documents every listed tool, the action or answer it provides, its installation command, and the input fields an agent should send.

WebMCP tools on analytics-dashboard

Tool 1 of 1WebMCPAnswer

query

Query the server logs. Sets all filters and visualization in one atomic call — every parameter is always applied together, so no stale state can carry over from a previous query. FILTERS (all optional — omit or pass null to leave unfiltered): status — HTTP status code: '200' | '201' | '301' | '304' | '401' | '403' | '404' | '500' method — HTTP verb: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS' pathSearch — substring matched against the request URL path, e.g. '/api' dateFrom — start date inclusive, YYYY-MM-DD (resolve "last week", "yesterday", etc. before calling) dateTo — end date inclusive, YYYY-MM-DD AGGREGATION (required): groupBy — dimension to group by: 'date' | 'status' | 'method' | 'path' | 'country' | 'user_agent' measure — metric to compute: 'count' (requests) | 'bytes' (bandwidth) | 'unique_ips' CHART (required): chartType — 'line' (trends over time, best with groupBy=date) | 'bar_vertical' | 'bar_horizontal' | 'table' (raw rows, groupBy/measure ignored)

How to install

Open the analytics-dashboard website and ask your browser agent to use query

Install browse first, then run the command in a terminal. WebMCP tools run directly on the website and do not need a package install.

Run with an agent

Use the query tool on analytics-dashboard with status: <string>, method: <string>, pathSearch: <string>, dateFrom: <string>, dateTo: <string>, groupBy: <string>, measure: <string>, chartType: <string>. Return the structured result and cite the source page.

Input contract

  • status string HTTP status filter. Omit for no filter.
  • method string HTTP method filter. Omit for no filter.
  • pathSearch string URL path substring filter. Omit for no filter.
  • dateFrom string Start date YYYY-MM-DD. Omit for no lower bound.
  • dateTo string End date YYYY-MM-DD. Omit for no upper bound.
  • groupBy string Dimension to group results by.
  • measure string Metric to compute: count (requests), bytes (bandwidth), or unique_ips.
  • chartType string Chart type. Use line for trends over time (best with groupBy=date). Use table for raw rows (groupBy/measure ignored).

Open the source definition