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 β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
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 48,000+ AI builders

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

Advertise here β†’
site-shot-mcp logo

site-shot-mcp

site-shot/site-shot-mcp
0 starsv0.1.1STDIORegistry activeMITUpdated 2026-06-15Community

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

claude mcp add site-shot -- npx -y site-shot-mcp

Summary

site-shot/site-shot-mcp MCP server](https://glama.ai/mcp/servers/site-shot/site-shot-mcp/badges/score.svg)](https://glama.ai/mcp/servers/site-shot/site-shot-mcp) πŸ“‡ ☁️ - Website screenshot API for AI agents.

Connect from your MCP client

One-click install

Add this server to your editor with a single click. Fill in any required credentials afterward.

Claude Code

Run this once and Claude Code registers the server for you:

claude mcp add site-shot -- npx -y site-shot-mcp

Claude Desktop

Add this to claude_desktop_config.json under Settings β†’ Developer β†’ Edit Config:

{
  "mcpServers": {
    "site-shot": {
      "command": "npx",
      "args": [
        "-y",
        "site-shot-mcp"
      ],
      "env": {
        "SITESHOT_API_KEY": "<SITESHOT_API_KEY>"
      }
    }
  }
}

Cursor

Add this to .cursor/mcp.json in your project (or ~/.cursor/mcp.json for all projects):

{
  "mcpServers": {
    "site-shot": {
      "command": "npx",
      "args": [
        "-y",
        "site-shot-mcp"
      ],
      "env": {
        "SITESHOT_API_KEY": "<SITESHOT_API_KEY>"
      }
    }
  }
}

Cline and other MCP clients

Most MCP clients accept the standard mcpServers JSON block:

{
  "mcpServers": {
    "site-shot": {
      "command": "npx",
      "args": [
        "-y",
        "site-shot-mcp"
      ],
      "env": {
        "SITESHOT_API_KEY": "<SITESHOT_API_KEY>"
      }
    }
  }
}

Codex CLI

Register the server with OpenAI's Codex CLI β€” run this once, or add the equivalent block to ~/.codex/config.toml:

codex mcp add site-shot --env SITESHOT_API_KEY=<SITESHOT_API_KEY> -- npx -y site-shot-mcp

# or add to ~/.codex/config.toml:
[mcp_servers.site-shot]
command = "npx"
args = ["-y", "site-shot-mcp"]
[mcp_servers.site-shot.env]
SITESHOT_API_KEY = "<SITESHOT_API_KEY>"

OpenClaw

OpenClaw reads MCP servers from the mcp.servers section of ~/.openclaw/openclaw.json (managed via `openclaw mcp add` or the mcporter skill):

{
  "mcp": {
    "servers": {
      "site-shot": {
        "command": "npx",
        "args": [
          "-y",
          "site-shot-mcp"
        ],
        "env": {
          "SITESHOT_API_KEY": "<SITESHOT_API_KEY>"
        }
      }
    }
  }
}

Replace the <PLACEHOLDER> values with your own credentials β€” see the configuration table below.

Configuration

site-shot-mcp reads the following environment variable:

VariableRequired
SITESHOT_API_KEYRequired

README.md

Site-Shot MCP server

Give Claude, Cursor, and other AI agents the ability to see any web page β€” take website screenshots with Site-Shot over the Model Context Protocol.

Real Chromium rendering Β· full-page capture Β· country proxies Β· automatic ad & cookie-banner removal (cleaner images, fewer vision tokens).

Quick start (Claude Desktop)

  1. Get a Site-Shot API key at <https://www.site-shot.com/pricing/>.
  2. Add this to your Claude Desktop config (claude_desktop_config.json):
{
  "mcpServers": {
    "site-shot": {
      "command": "npx",
      "args": ["-y", "site-shot-mcp"],
      "env": { "SITESHOT_API_KEY": "YOUR_API_KEY" }
    }
  }
}
  1. Restart Claude Desktop. Ask it to "take a full-page screenshot of https://news.ycombinator.com" and

it will call the server and show you the image.

Works the same way in any MCP client (Cursor, Cline, VS Code, LangChain, CrewAI) β€” point the client at npx -y site-shot-mcp with SITESHOT_API_KEY in the environment.

Tools

capture_screenshot

Screenshot a web page (viewport by default).

| Param | Type | Default | Notes | |---|---|---|---| | url | string (required) | β€” | Page to capture | | full_page | boolean | false | Capture the whole scrollable page | | width / height | number | 1280 / 1024 | Viewport / device size | | format | "png" \| "jpeg" | png | Image format | | block_ads | boolean | true | Remove ads | | block_cookie_banners | boolean | true | Remove cookie-consent popups | | country | string | β€” | Proxy country as a two-letter ISO 3166-1 alpha-2 code, e.g. "DE" (auto IP/lang/tz/geo) | | strict_country | boolean | true | Error out if the country has no proxy, instead of falling back to the US | | language / time_zone / geolocation | string | β€” | Manual overrides | | wait_ms | number | β€” | Wait before capture (SPAs/animations) | | max_height | number | 20000 (full page) | Cap captured height |

Returns the screenshot as an MCP image.

Country codes are ISO codes, never names. Pass "DE", not "Germany". The API matches codes exactly and would otherwise render through a US proxy without telling you, so the server rejects full names before spending a render. strict_country (on by default) likewise turns an unavailable country into an error instead of a silent US screenshot β€” pass false to opt back into the fallback. Supported countries β†’

capture_full_page

Same as capture_screenshot with full-page capture enabled.

Configuration

| Env var | Required | Description | |---|---|---| | SITESHOT_API_KEY | yes | Your Site-Shot API key (used as userkey). |

The server is a thin wrapper over the existing Site-Shot HTTP API (https://api.site-shot.com/) β€” no separate backend.

Local development

npm install
npm run check   # syntax check
npm run smoke   # offline tests (stubbed fetch, no API key needed)
SITESHOT_API_KEY=yourkey npm start   # run the server on stdio

Requirements

Node.js β‰₯ 18 (uses the built-in fetch).

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.