MCP tools
The web_access_fetch and web_access_search tools, with parameters.
Both the remote and self-hosted servers expose the same two tools. Both are read-only.
web_access_fetch
Fetch any webpage and get clean, LLM-ready Markdown back. Handles proxy rotation, anti-bot protection, CAPTCHAs, and
JavaScript-rendered content automatically. The common case is passing only a url.
| Parameter | Type | Default | Description |
|---|---|---|---|
url | string | — | Required. The full http/https URL to fetch. |
format | markdown raw json | markdown | markdown for clean text, raw for the verbatim body, json for a { statusCode, headers, data } envelope. |
method | GET POST PUT PATCH | GET | Use a write method to send a body. |
body | string | object | — | Request body for non-GET. Objects are JSON-stringified. |
headers | object | — | Custom request headers (max 50). Not supported with executeJS. |
countryCode | string(2) | — | ISO 3166-1 alpha-2 country for geolocated proxy routing. |
executeJS | boolean | false | Render JavaScript for SPAs. Cannot be combined with headers. |
solveCaptcha | boolean | true | Set false to fail fast instead of solving challenges. |
Returns: Markdown by default; the verbatim body or a JSON envelope when format is set accordingly.
{ "url": "https://example.com/article" }Tool surface vs. the full API
The MCP web_access_fetch tool exposes the most common fetch options. Advanced /fetch features — structured
extraction (jsonSchema), screenshots & browser
actions, and requireWSS — are available on the HTTP API
directly.
web_access_search
Search the web and return structured organic results. Bypasses anti-bot protection on search engines.
| Parameter | Type | Description |
|---|---|---|
query | string | Required. The search query. Be specific for best results. |
Returns: the organic results, each with position, title, URL, snippet, and display URL.
{ "query": "latest developments in AI agents 2026" }Recommended workflow
- Call
web_access_searchto find relevant pages for a query. - Call
web_access_fetchon the most relevant URLs to pull their full content.