MCP server for the Urlbox Screenshot API. Enables your client to take screenshots, generate PDFs, extract HTML/markdown, and more from websites. Visit Urlbox for more information, and have a read of our docs or chat with your LLM post install to get a good understanding of its options and capabilities. 1. Install dependencies and build: 2. Get Urlbox API credentials: - Sign up at urlbox.com - Get
Add this skill
npx mdskills install urlbox/urlbox-mcp-serverWell-documented screenshot API with clear setup, practical examples, and multiple output formats
1# Urlbox MCP Server23[](https://www.urlbox.com)45MCP server for the [Urlbox](https://urlbox.com) Screenshot API. Enables your client to take screenshots, generate PDFs, extract HTML/markdown, and more from websites.67Visit [Urlbox](https://urlbox.com) for more information, and have a read of our [docs](https://urlbox.com) or chat with your LLM post install to get a good understanding of its options and capabilities.89[](https://evanth.io/mcp/urlbox-screenshot-mcp)1011## Setup12131. **Install dependencies and build:**1415 ```bash16 npm install17 npm run build18 ```19202. **Get Urlbox API credentials:**21 - Sign up at [urlbox.com](https://urlbox.com)22 - Get your API Secret from the [ dashboard ](https://urlbox.com/dashboard)23243. **Set environment variables:**2526> claude_desktop_config.json2728```JSON29{30 "mcpServers": {31 "screenshot": {32 "command": "npx",33 "args": ["-y", "@urlbox/screenshot-mcp"],34 "env": {35 "SECRET_KEY": "your_api_key_here"36 }37 }38 }39}40```4142## Usage4344The server provides a `render` tool that can:45- Take screenshots in multiple formats (PNG, PDF, MP4 and more)46- Convert pages to HTML, markdown47- Extract metadata and cookies48- Save files locally to your downloads with `store_renders: true`4950Claude will automatically use this when you ask it to screenshot websites or convert web content.515253## Useful prompts5455**Take a clean screenshot without ads or cookie banners:**56```57Take a screenshot of https://example.com but block ads and hide cookie banners58```5960**Screenshot and save side renders like HTML/markdown:**61```62Take a screenshot of https://example.com and also save it as HTML and markdown. Download the result to my computer.63```6465**Generate a PDF of the full page:**66```67Convert https://urlbox.com to a PDF and save it to my computer. Make sure to generate a PDF that has an outline and is tagged.68```69
Full transparency — inspect the skill content before installing.