MCP server for fetching web content using Playwright browser
Fetcher MCP MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. MCP server for fetching web content using Playwright browser.
Once Fetcher MCP is connected, these are the calls the assistant has available:
fetch_url — Retrieve web page content from a specified URLurl — The URL of the web page to fetch (required parameter)timeout — Page loading timeout in milliseconds, default is 30000 (30 seconds)waitUntil — Specifies when navigation is considered complete, options: 'load', 'domcontentloaded', 'networkidle', 'commit', default is 'load'extractContent — Whether to intelligently extract the main content, default is truemaxLength — Maximum length of returned content (in characters), default is no limitreturnHtml — Whether to return HTML content instead of Markdown, default is falsewaitForNavigation — Whether to wait for additional navigation after initial page load (useful for sites with anti-bot verification), default is falsenavigationTimeout — Maximum time to wait for additional navigation in milliseconds, default is 10000 (10 seconds)disableMedia — Whether to disable media resources (images, stylesheets, fonts, media), default is truedebug — Whether to enable debug mode (showing browser window), overrides the --debug command line flag if specifiedfetch_urls — Batch retrieve web page content from multiple URLs in parallelfetcher-mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.
Among the browser automation options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Fetcher MCP's toolset — fetch_url, url, timeout and 11 more — is a fair guide to whether it matches your workflow. It is maintained by jae-jae; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| fetch_url | Retrieve web page content from a specified URL |
| url | The URL of the web page to fetch (required parameter) |
| timeout | Page loading timeout in milliseconds, default is 30000 (30 seconds) |
| waitUntil | Specifies when navigation is considered complete, options: 'load', 'domcontentloaded', 'networkidle', 'commit', default is 'load' |
| extractContent | Whether to intelligently extract the main content, default is true |
| maxLength | Maximum length of returned content (in characters), default is no limit |
| returnHtml | Whether to return HTML content instead of Markdown, default is false |
| waitForNavigation | Whether to wait for additional navigation after initial page load (useful for sites with anti-bot verification), default is false |
| navigationTimeout | Maximum time to wait for additional navigation in milliseconds, default is 10000 (10 seconds) |
| disableMedia | Whether to disable media resources (images, stylesheets, fonts, media), default is true |
| debug | Whether to enable debug mode (showing browser window), overrides the --debug command line flag if specified |
| fetch_urls | Batch retrieve web page content from multiple URLs in parallel |
| urls | Array of URLs to fetch (required parameter) |
| browser_install | Install Playwright Chromium browser binary automatically |
{
"mcpServers": {
"fetcher": {
"command": "npx",
"args": ["-y", "fetcher-mcp"]
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
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.