webpage screenshot mcp
Captures screenshots of web URLs or local HTML files using Playwright Chromium and exposes them as resources.
README
Webpage Screenshot MCP
<img src="https://i.postimg.cc/LRfcTXD9/Chat-GPT-Image-Aug-2-2025-06-52-39-PM.webp" width="50%" alt="Webpage Screenshot MCP">
Capture screenshots of web URLs or local .html files using Playwright Chromium.
Each capture is saved to disk and exposed as a Resource with URI scheme screenshots://{screenshotId}, that compatible MCP clients can read.
Usage & Requirements
Requirements
- Node.js v20+
- pnpm v10.x
Configure MCP in your IDE
Claude Code
claude mcp add webpageScreenshot pnpm dlx @srigi/mcp-webpage-screenshot
JSON configuration
Add the following configuration to your MCP settings:
{
"mcpServers": {
"webpageScreenshot": {
"command": "pnpm",
"args": ["dlx", "@srigi/mcp-webpage-screenshot"],
"autoApprove": [
"create_webpage_file_screenshot",
"create_webpage_url_screenshot"
]
}
}
}
Usage examples
Prompts you can try:
Screenshot of an URL
- Take a screenshot of
https://example.comand save it asexample-website.png. - Make another screenshot with viewport width 640 and height 1280px.
Screenshot of a local file
- Capture a full-page screenshot of
example/page.htmland save it alongside.
Logging
You can configure logging by adding flags to the args array in your MCP configuration:
"webpageScreenshot": {
"command": "pnpm",
"args": [
"dlx", "@srigi/mcp-webpage-screenshot",
"--debug", "/absolute/path/to/debug.log",
"--pretty-print"
]
}
Debug flags:
- No
--debug: logging disabled --debug: writes todebug.login the current working directory of the running MCP--debug /absolute/path/to/debug.log: writes logs to that absolute path (absolute paths only)--pretty-print: pretty formatted JSON logs
🛠️ Tools & Resources
Tool: create_webpage_file_screenshot
Create a screenshot of a local HTML file:
- loads the local HTML via
file:// - waits for
networkidle - captures PNG (Buffer), supports full-page height
- saves the image to a workspace-relative path
- adds an in-memory Resource entry and returns a
screenshots://URI
Parameters:
screenshotFilePath: File where to save the screenshot (relative to the current workspace)webpageFilePath: HTML file path of the webpage to screenshot (relative to the current workspace)workspacePath: The current workspace absolute pathviewport(optional):width: number(default 1280)height: number | "fullpage"(default 768). Use"fullpage"to capture the entire page height.
Security constraints: all paths are resolved relative to workspacePath
Tool: create_webpage_url_screenshot
Create a screenshot of a web URL:
- validates HTTP/HTTPS URLs only (rejects
file://,data://, etc.) - implements retry logic with progressive timeouts (5s, 9s, 15s)
- waits for
networkidleand dynamic content loading - applies security headers (DNT, User-Agent) and safe browser settings
- captures PNG (Buffer), supports full-page height
- saves the image to a workspace-relative path
- adds an in-memory Resource entry and returns a
screenshots://URI
Parameters:
screenshotFilePath: File where to save the screenshot (relative to the current workspace)url: URL of the webpage to screenshot (HTTP/HTTPS only)workspacePath: The current workspace absolute pathviewport(optional):width: number(default 1280)height: number | "fullpage"(default 768). Use"fullpage"to capture the entire page height.
Security features: protocol validation, security headers, download blocking, CSP respect, HTTPS error handling
Resource: screenshots://{screenshotId}
Each created screenshot is added to an in-memory registry and exposed as a Resource with:
uri:screenshots://<screenshotId>blob:data:image/png;base64,...mimeType:image/pngtext: original webpage file path or URL used for the screenshot
Note:
- Listing resources is not implemented (list is not available).
Development
Requirements
- Node.js v20+
- PNPM v10
The install step will post-install Playwright Chromium, but it's not guaranteed to work. To ensure the shell browser is installed, run:
pnpm playwright install --with-deps --only-shell chromium
Steps
- Install dependencies:
pnpm install - Start the TypeScript compiler in watch mode:
pnpm dev - (Optional) Start the MCP Inspector:
pnpm dev:inspector - Update your MCP configuration for development (adjust the path to the compiled JS):
{ "mcpServers": { "webpageScreenshot": { "command": "node", "args": ["/absolute/path/to/compiled/src/index.js", "--debug", "--pretty-print"], "autoApprove": [ "create_webpage_file_screenshot", "create_webpage_url_screenshot" ] } } }
Testing
Run tests:
pnpm test
Tests use Vitest with global logger setup in vitest.setup.ts to handle TypeScript/JavaScript module isolation.
Notes:
- Restart the MCP in your IDE after source changes to pick up newly compiled code.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。