fetch_url
Generate a concise meta description for the fetch_url tool from the Codex Chrome MCP server, following the provided instructions and outputting JSON.
Instructions
Fetch rendered content for one or more URLs through the user's Chrome (their cookies/session) WITHOUT touching the active tab, via browser.tabs.content. Ideal for JSON endpoints (e.g. Discourse /t/.json) or reading pages in bulk - much faster than goto+scroll+DOM scraping. content_type: 'text' (default), 'html', or 'domSnapshot'. May fail if the browser host does not support tabs_content or a content-blocker extension blocks the URL; fall back to goto + eval_js then.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | http(s) URLs to fetch (keep the batch small, e.g. 1-5). | |
| timeout_ms | No | Per-URL timeout in ms (default 15000). | |
| content_type | No | Content format (default 'text'). |