Render Fetch MCP Server

Drop-in upgrade to Claude's WebFetch — auto-detects static vs JS-rendered pages and returns clean markdown

Local serverstdio

What is the Render Fetch MCP server?

Render Fetch MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Drop-in upgrade to Claude's WebFetch — auto-detects static vs JS-rendered pages and returns clean markdown.

What you get

Drop-in upgrade to Claude Code's WebFetch — handles JS-rendered pages automatically.

Setting it up

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.

What the assistant can call

Once Render Fetch is connected, these are the calls the assistant has available:

  • fetch — Fetch page as markdown (auto-detects mode)
  • fetch_raw — Fetch page as raw HTML
  • screenshot — Take a viewport screenshot

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the render fetch mcp server does with a few real requests.

Choosing this one

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. Render Fetch's toolset — fetch, fetch_raw, screenshot — is a fair guide to whether it matches your workflow. It is maintained by sub-techie09; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Render Fetch's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
fetchFetch page as markdown (auto-detects mode)
fetch_rawFetch page as raw HTML
screenshotTake a viewport screenshot

How to install the Render Fetch MCP server

{
  "mcpServers": {
    "render-fetch": {
      "command": "npx",
      "args": ["-y", "render-fetch"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Render Fetch to fetch.
  • Use Render Fetch to fetch raw.
  • Use Render Fetch to screenshot.

Frequently asked questions

It connects Render Fetch to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (fetch, fetch_raw, screenshot) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Render Fetch directly.