Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

snaprender-mcp MCP server](https://glama.ai/mcp/servers/@User0856/snaprender-mcp/badges/score.svg)](https://glama.ai/mcp/servers/@User0856/snaprender-mcp) πŸ“‡ ☁️ - Screenshot API for AI agents β€” capture any website as PNG, JPEG, WebP, or PDF with device...

README.md

SnapRender Integrations

![smithery badge](https://smithery.ai/server/snaprender/snaprender) ![npm MCP](https://www.npmjs.com/package/snaprender-mcp) ![npm SDK](https://www.npmjs.com/package/snaprender) ![PyPI SDK](https://pypi.org/project/snaprender/) ![License: MIT](./LICENSE) ![Available on CodeGuilds](https://codeguilds.dev/packages/snaprender-integrations)

Official integrations for SnapRender Screenshot API β€” capture screenshots of any website as PNG, JPEG, WebP, or PDF.

Remote MCP Server

SnapRender runs a hosted MCP server β€” connect from any MCP client with zero install:

https://app.snap-render.com/mcp
  • Transport: Streamable HTTP (MCP spec 2025-03-26)
  • Auth: X-API-Key header or Authorization: Bearer header
  • Tools: take_screenshot, check_screenshot_cache, get_usage
  • Prompts: screenshot_website, compare_devices

Claude Desktop (remote β€” recommended)

{
  "mcpServers": {
    "snaprender": {
      "type": "streamable-http",
      "url": "https://app.snap-render.com/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_your_key_here"
      }
    }
  }
}

Any MCP client (curl)

# Initialize a session
curl -X POST https://app.snap-render.com/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "X-API-Key: sk_live_your_key_here" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}'

The server returns an Mcp-Session-Id header β€” include it in subsequent requests to reuse the session.

Smithery

Install via Smithery for automatic setup with any MCP client.

Local MCP Server (npm)

If you prefer running locally via stdio transport:

{
  "mcpServers": {
    "snaprender": {
      "command": "npx",
      "args": ["-y", "snaprender-mcp"],
      "env": {
        "SNAPRENDER_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

See mcp-server/ for full documentation.

Remote vs Local

| | Remote (hosted) | Local (npx) | |---|---|---| | Install | None β€” just an HTTPS URL | Requires Node.js + npx | | Transport | Streamable HTTP | stdio | | Use case | Any MCP client, Smithery, web apps | Claude Desktop, Claude Code |

MCP Tools

take_screenshot

Capture a screenshot of any website. Returns the image as PNG, JPEG, WebP, or PDF.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | url | string | Yes | URL to capture (http:// or https://) | | format | string | No | png, jpeg, webp, or pdf (default: png) | | width | integer | No | Viewport width 320-3840 (default: 1280) | | height | integer | No | Viewport height 200-10000 (default: 800) | | full_page | boolean | No | Capture entire scrollable page | | device | string | No | iphone_14, iphone_15_pro, pixel_7, ipad_pro, macbook_pro | | dark_mode | boolean | No | Enable dark mode | | block_ads | boolean | No | Block ads (default: true) | | block_cookie_banners | boolean | No | Remove cookie banners (default: true) | | quality | integer | No | JPEG/WebP quality 1-100 (default: 90) | | delay | integer | No | Wait ms after page load (default: 0) | | hide_selectors | string | No | Comma-separated CSS selectors to hide | | click_selector | string | No | CSS selector to click before capture |

check_screenshot_cache

Check if a screenshot is cached without capturing. Does not count against quota.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | url | string | Yes | URL to check | | format | string | No | Output format (default: png) |

get_usage

Get screenshot usage statistics.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | month | string | No | Month in YYYY-MM format (default: current month) |

Agent Framework Integrations

| Framework | Directory | Description | |-----------|-----------|-------------| | LangChain Python | langchain/ | @tool decorated functions for LangChain / LangGraph agents (PyPI) | | LangChain.js | langchain-js/ | StructuredTool classes for LangChain.js agents (npm) | | CrewAI | crewai/ | BaseTool subclasses for CrewAI agents (PyPI) | | AutoGen | autogen/ | FunctionTool wrappers for Microsoft AutoGen agents (PyPI) | | n8n | Separate repo | Community node for n8n workflows (npm) |

Other Integrations

| Integration | Description | Setup Time | |------------|-------------|------------| | OpenClaw Skill | Skill file for OpenClaw AI agent | 5 min | | ChatGPT Actions | OpenAPI spec for Custom GPTs and OpenAI function calling | 5 min | | Postman Collection | Pre-built API requests for Postman | 1 min |

SDKs

# Node.js
npm install snaprender

# Python
pip install snaprender

Direct API

curl "https://app.snap-render.com/v1/screenshot?url=https://example.com" \
  -H "X-API-Key: sk_live_your_key_here" \
  -o screenshot.png

Get an API Key

Sign up free at snap-render.com β€” 200 screenshots/month, no credit card required.

Links

License

MIT

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Cloud & DevOps servers.