Puppeteer MCP Server

semantic_search_requests

Semantically search for requests that occurred within a page URL. Returns the top 10 results.

Input Schema

NameRequiredDescriptionDefault
page_urlYesThe page within which to search for requests
queryYesYour search request. Make this specific and detailed to get the best results

Input Schema (JSON Schema)

{ "properties": { "page_url": { "description": "The page within which to search for requests", "type": "string" }, "query": { "description": "Your search request. Make this specific and detailed to get the best results", "type": "string" } }, "required": [ "query", "page_url" ], "type": "object" }