npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@screenshotsage/mcp-server

v1.0.0

Published

MCP server for ScreenshotSage - Capture website screenshots from AI assistants

Readme

ScreenshotSage MCP Server

An MCP (Model Context Protocol) server that enables AI assistants to capture website screenshots using the ScreenshotSage API.

Installation

npm install -g @screenshotsage/mcp-server

Or run directly with npx:

npx @screenshotsage/mcp-server

Configuration

Get an API Key

  1. Sign up at screenshotsage.com
  2. Go to your dashboard and create an API key
  3. Set the SCREENSHOTSAGE_API_KEY environment variable

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "screenshotsage": {
      "command": "npx",
      "args": ["@screenshotsage/mcp-server"],
      "env": {
        "SCREENSHOTSAGE_API_KEY": "your-api-key-here"
      }
    }
  }
}

Claude Code

Add to your Claude Code MCP settings:

{
  "mcpServers": {
    "screenshotsage": {
      "command": "npx",
      "args": ["@screenshotsage/mcp-server"],
      "env": {
        "SCREENSHOTSAGE_API_KEY": "your-api-key-here"
      }
    }
  }
}

Available Tools

capture_screenshot

Capture a screenshot of any website URL.

Parameters:

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | url | string | Yes | The URL to capture | | format | string | No | Output format: png, jpeg, webp, pdf, html | | width | number | No | Viewport width (320-3840, default: 1200) | | height | number | No | Viewport height (200-3840) | | fullPage | boolean | No | Capture full scrollable page | | devicePreset | string | No | Device preset: desktop, tablet, mobile | | darkMode | boolean | No | Force dark color scheme | | delay | number | No | Delay before capture in ms (0-10000) | | waitForSelector | string | No | CSS selector to wait for | | blockAds | boolean | No | Block advertisements | | blockCookieBanners | boolean | No | Block cookie consent banners | | hideSelectors | array | No | CSS selectors to hide | | geolocation | object | No | Emulate location {latitude, longitude, accuracy} | | timezone | string | No | IANA timezone (e.g., "America/New_York") | | language | string | No | Accept-Language header |

Example usage in Claude:

"Take a screenshot of https://example.com"

"Capture a full-page mobile screenshot of https://news.ycombinator.com in dark mode"

"Screenshot https://maps.google.com with geolocation set to New York City"

get_screenshot

Get metadata for a previously captured screenshot.

Parameters:

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | id | number | Yes | The screenshot ID |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | SCREENSHOTSAGE_API_KEY | Yes | Your ScreenshotSage API key | | SCREENSHOTSAGE_BASE_URL | No | API base URL (default: https://screenshotsage.com) |

Examples

Basic Screenshot

Ask Claude: "Take a screenshot of https://github.com"

Mobile Screenshot with Dark Mode

Ask Claude: "Capture a mobile screenshot of https://twitter.com in dark mode"

Full Page with Ad Blocking

Ask Claude: "Take a full-page screenshot of https://medium.com with ads blocked"

Screenshot with Geolocation

Ask Claude: "Screenshot Google Maps centered on Paris, France"

Pricing

The MCP server uses your ScreenshotSage API quota. See pricing for plan details:

  • Free: 200 screenshots/month
  • Starter: 1,000 screenshots/month
  • Professional: 5,000 screenshots/month

Links

License

MIT