WebsiteScreenshot.online MCP Server

WebsiteScreenshot.online MCP Server

Enables AI assistants to capture website screenshots and record videos of web pages by providing tools for taking screenshots, recording videos, and checking video status.

Category
Visit Server

README

WebsiteScreenshot.online MCP Server

License: MIT Node >= 18.18 MCP

A Model Context Protocol server that wraps the WebsiteScreenshot.online REST API and exposes it as three MCP tools any MCP-compatible host (Claude Desktop, Claude Code, Cursor, Cline, Continue, Zed, Raycast, โ€ฆ) can call directly.


โšก Most users don't need this package

If you just want your AI assistant to take screenshots and record videos, use the hosted endpoint instead โ€” zero install, one line of JSON:

https://websitescreenshot.online/api/mcp

See the per-host configuration snippets for Claude Code, Claude Desktop, Cursor, Cline, Codex CLI, Gemini CLI, Continue, Windsurf, and Zed.

You only need this npm package if one of the following applies:

  • ๐Ÿ›ฐ๏ธ Air-gapped or restricted network โ€” your AI host cannot reach websitescreenshot.online directly.
  • ๐Ÿ  Self-hosted WebsiteScreenshot โ€” you run your own instance and need SCREENSHOT_API_BASE pointing at it.
  • ๐Ÿ”ง You want to audit / modify the server โ€” this is the same code the hosted endpoint runs, just without the Next.js wrapper.

In every other case, the hosted endpoint is strictly better (no Node dependency, automatic updates, no maintenance burden).


1. Prerequisites


2. Get an API key

  1. Sign up at https://websitescreenshot.online (GitHub OAuth or email).
  2. Switch to your locale if needed (e.g. /en/dashboard/api-keys, /zh-CN/dashboard/api-keys).
  3. Open Dashboard โ†’ API Keys โ†’ Create new key.
  4. Copy the key. It starts with ws_ followed by 64 hex chars (e.g. ws_<your-key-here>) and is shown once โ€” store it somewhere safe.

The MCP server only ever reads the key from the environment. It is never logged, never sent to the model, and never written to disk by this package.


3. Install & build

git clone https://github.com/Website-Screenshot-Online/websitescreenshot-mcp.git
cd websitescreenshot-mcp
npm install
npm run build

That's it โ€” build/index.js is a self-contained executable you can wire into any MCP host.


4. Configure your MCP host

Claude Desktop โ€” claude_desktop_config.json

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "websitescreenshot": {
      "command": "node",
      "args": ["/absolute/path/to/websitescreenshot-mcp/build/index.js"],
      "env": {
        "SCREENSHOT_API_KEY": "ws_replace_with_your_real_api_key",
        "SCREENSHOT_REQUEST_TIMEOUT_MS": "60000"
      }
    }
  }
}

Claude Code โ€” ~/.claude.json

{
  "mcpServers": {
    "websitescreenshot": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/websitescreenshot-mcp/build/index.js"],
      "env": {
        "SCREENSHOT_API_KEY": "ws_replace_with_your_real_api_key"
      }
    }
  }
}

Cursor / VS Code (.cursor/mcp.json)

{
  "mcpServers": {
    "websitescreenshot": {
      "command": "node",
      "args": ["/absolute/path/to/websitescreenshot-mcp/build/index.js"],
      "env": { "SCREENSHOT_API_KEY": "ws_replace_with_your_real_api_key" }
    }
  }
}

Cline / Continue / Zed / Raycast

All accept the same command + args + env shape โ€” just point them at build/index.js and pass SCREENSHOT_API_KEY through env.

Restart the host after editing its config and the three tools will show up in its tool palette.


5. Self-hosted WebsiteScreenshot

If you run your own WebsiteScreenshot instance, point the server at it:

"env": {
  "SCREENSHOT_API_KEY": "ws_replace_with_your_real_api_key",
  "SCREENSHOT_API_BASE": "https://your-self-hosted.example.com"
}

6. Usage examples

You don't write JSON manually โ€” the model does. These are the payloads the model will actually send.

Screenshot โ€” viewport of a landing page

take_screenshot({
  url: "https://example.com",
  resolution: { width: 1440, height: 900 },
  format: "png",
  fullSize: false,
  blockAds: true,
  blockCookiesGdpr: true,
  delay: 1
})

Screenshot โ€” full-page PDF for archival

take_screenshot({
  url: "https://news.ycombinator.com",
  fullSize: true,
  format: "pdf"
})

Synchronous video (โ‰ค 6 min)

record_website_video({
  url: "https://stripe.com",
  format: "mp4",
  scrollMode: "smooth",
  smoothScrollSpeed: "normal",
  resolution: { width: 1280, height: 720 }
})

Async video + status polling

record_website_video({ url: "https://stripe.com", async: true })
// โ†’ { "success": true, "requestId": "f7c1..." }

check_video_status({ requestId: "f7c1..." })
// โ†’ { "status": "pending", ... }  // poll again
// โ†’ { "status": "completed", "videoUrl": "https://...", ... }

7. Tool reference

take_screenshot

Field Type Default Notes
url string (URL) โ€” required
resolution { width, height } 1920ร—1080 Any preset or custom size
fullSize bool false Capture entire scrollable page
format png | jpeg | pdf png
blockCookiesGdpr bool true Dismiss cookie banners first
blockAds bool true Block ad networks
delay int (0โ€“10 seconds) 1 Wait before capturing

Response shape:

{
  "success": true,
  "imageUrl": "https://websitescreenshot.online/screenshots/abc.png",
  "filename": "abc.png"
}

record_website_video

Same fields as above plus:

Field Type Default
format webm | mp4 | gif webm
scrollMode step | smooth step
smoothScrollSpeed slow | normal | fast normal
scrollDistance int 100โ€“1000 (px) 500
scrollDelay int 200โ€“5000 (ms) 1000
async bool false

Sync response:

{ "success": true, "videoUrl": "https://โ€ฆ/abc.webm", "filename": "abc.webm" }

Async response:

{ "success": true, "requestId": "f7c1โ€ฆ" }

check_video_status

Field Type
requestId string

Response:

{
  "status": "completed",
  "siteUrl": "https://โ€ฆ",
  "result": { "success": true, "videoUrl": "https://โ€ฆ", "filename": "abc.webm" },
  "updatedAt": 1730000000000
}

status is one of pending | completed | error. Results are kept for 24 hours then deleted.


8. Error handling

Every API error is mapped to an MCP isError: true result containing code, status, and error fields. Common codes:

Code Meaning
UNAUTHORIZED Missing / revoked key
RATE_LIMITED Per-key or per-IP limit hit; retry later
USAGE_LIMIT_EXCEEDED Plan quota exhausted
INVALID_PARAMETERS Input failed Zod validation
INTERNAL_ERROR Server-side bug; retry with backoff
TIMEOUT Request took longer than SCREENSHOT_REQUEST_TIMEOUT_MS
NOT_FOUND requestId unknown or expired

Rate limits: 10 screenshots / min and 5 videos / min per API key.


9. Environment variables

Variable Required Default Purpose
SCREENSHOT_API_KEY yes โ€” The Bearer token sent to the API
SCREENSHOT_API_BASE no https://websitescreenshot.online Override for self-hosted / staging
SCREENSHOT_REQUEST_TIMEOUT_MS no 60000 Per-request abort timeout (ms)

10. Development

npm run dev       # tsx, hot reload stdio
npm run lint      # type-check only
npm run build     # emit build/index.js

To point the dev server at a self-hosted API:

SCREENSHOT_API_BASE=http://localhost:3000 \
SCREENSHOT_API_KEY=ws_dev_replace_me \
npm run dev

11. License

MIT ยฉ Crownbyte LTD โ€” see LICENSE.

Website: https://websitescreenshot.online Hosted MCP: https://websitescreenshot.online/api/mcp Docs: https://websitescreenshot.online/en/docs/mcp Support: support@websitescreenshot.online

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured