web_site_search
Search a single site via its own search box to learn the URL pattern for direct queries, enabling later plain web fetches without a browser or crawl.
Instructions
Search one site through its own search box and learn the URL pattern the form produces. Use for shops, job boards and docs whose content only appears when asked for: a crawl reaches only what is linked, and web_search covers the whole web, not one site. Returns results_url, the pattern (/search?q=...) that makes every later query a plain web_fetch with no browser, plus the first results while fetch is true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Any page of the site — usually the home page. Its search box is what gets used. | |
| fetch | No | Fetch the results too, rather than only reporting the pattern. Default true. | |
| query | Yes | What to search for. | |
| timeout | No | Timeout in ms. Default 60000. |