Screenshotrender MCP Server

Capture website screenshots from any MCP client via the ScreenshotRender API.

Remote serverstreamable-http

What is the Screenshotrender MCP server?

Capture website screenshots from any MCP client via the ScreenshotRender API. That is what the screenshotrender mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

  1. Get your API key at screenshotrender.com (it starts with sr-). 2. Add the server to your MCP client config.

The tools it exposes

The server publishes 1 tool. What each one is for:

  • take_screenshot — Capture a screenshot of any public URL. Returns the image inline plus a hosted URL and page metadata (title, description)

What it needs from you

Configuration is passed through the environment: SCREENSHOTRENDER_API_KEY, SCREENSHOTRENDER_BASE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Screenshotrender's toolset — take_screenshot — is a fair guide to whether it matches your workflow. It is maintained by faridmth; 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.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
take_screenshotCapture a screenshot of any public URL. Returns the image inline plus a hosted URL and page metadata (title, description).

How to install the Screenshotrender MCP server

{
  "mcpServers": {
    "screenshotrender": {
      "command": "npx",
      "args": ["-y", "screenshotrender-mcp"],
      "env": {
        "SCREENSHOTRENDER_API_KEY": "sr-your-key-here"
      }
    }
  }
}

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

Configuration

VariableDescriptionRequired
SCREENSHOTRENDER_API_KEYCredential the server authenticates with.Yes
SCREENSHOTRENDER_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Screenshotrender to take screenshot.

Frequently asked questions

It connects Screenshotrender to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (take_screenshot) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Screenshotrender directly.