MCP server for fetching web page content with recursive exploration capability
If you already use Docs Fetch MCP, the docs fetch mcp mcp server is the piece that lets your assistant work with it directly. MCP server for fetching web page content with recursive exploration capability.
A Bun-based Model Context Protocol (MCP) server for fetching documentation pages and bounded documentation crawls.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
depth — 1 returns only the root pagesameOrigin — true rejects links whose origin differs from the normalized root URLincludeLinks — false hides links in returned page objects but does not disable link discovery for crawlingrender — "never" uses only the HTTP fetch pathurl — stringmaxPages — numbermaxConcurrency — numbertimeoutMs — numberperPageTimeoutMs — numberpathPrefix — stringcontentLimit — numberfetch_doc_content — The fetch_doc_content tool exposed by this server>=1.3.0 - Puppeteer's browser installation if render is auto or always This project uses Bun for dependency management, runtime execution, builds, and tests.This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Docs Fetch MCP's toolset — depth, sameOrigin, includeLinks and 9 more — is a fair guide to whether it matches your workflow. It is maintained by wolfyy970; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Docs Fetch MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| depth | 1 returns only the root page |
| sameOrigin | true rejects links whose origin differs from the normalized root URL. |
| includeLinks | false hides links in returned page objects but does not disable link discovery for crawling. |
| render | "never" uses only the HTTP fetch path. |
| url | string |
| maxPages | number |
| maxConcurrency | number |
| timeoutMs | number |
| perPageTimeoutMs | number |
| pathPrefix | string |
| contentLimit | number |
| fetch_doc_content | The fetch_doc_content tool exposed by this server. |
Configure your MCP client:
```json
{
"mcpServers": {
"docs-fetch": {
"command": "bun",
"args": ["/path/to/docs-fetch-mcp/build/index.js"]
}
}
}Configuration as documented by the project. Restart the client after saving.
>=1.3.0 - Puppeteer's browser installation if render is auto or always This project uses Bun for dependency management, runtime execution, builds, and tests.Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.