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

screenspo-mcp

v0.1.0

Published

MCP server for searching and viewing real App Store listing screenshot references from Screenspo.

Readme

screenspo-mcp

An MCP server that gives AI agents access to Screenspo, a curated library of real App Store listing screenshots. Search apps and individual frames by layout, palette, category, content, background, mode, and caption treatment, then pull the actual image into the agent's context.

The package ships a build-time index of 379 iOS apps and 4,379 ordered listing screenshots: 2,827 vision-tagged iPhone frames and 1,552 iPad frames. Screenshots are fetched on demand from Screenspo's public CDN, with Apple's source image as a fallback.

Install

Claude Code:

claude mcp add screenspo -- npx -y screenspo-mcp

Codex:

codex mcp add screenspo -- npx -y screenspo-mcp

Cursor and other stdio MCP clients:

{
  "mcpServers": {
    "screenspo": {
      "command": "npx",
      "args": ["-y", "screenspo-mcp"]
    }
  }
}

Tools

| Tool | What it does | | --- | --- | | get_design_vocabulary | Lists every supported filter with real example counts and explains filter semantics. | | search_apps | Finds comparable apps by product text, category, device, layout, color, mode, and listing content. | | search_screenshots | Searches individual iPhone and iPad listing frames and returns exact device/index pairs. | | get_app_details | Returns the palette, narrative, analysis, and complete device-specific ordered screenshot sets for one app. | | get_screenshot | Fetches the actual iPhone or iPad listing screenshot image for visual inspection. |

Recommended workflow

  1. Call get_design_vocabulary to turn the brief into supported filters.
  2. Use search_apps for comparable products and search_screenshots for specific visual treatments.
  3. Read the ordered story with get_app_details.
  4. Inspect the strongest frames with get_screenshot.
  5. Deconstruct and recombine multiple references instead of copying one listing.

Screenspo covers App Store listing artwork. It does not provide evidence about in-app splash screens, login screens, or product UI flows.

Development

cd mcp
npm install
npm test
npm run build
npm run smoke

npm run build:data regenerates the compact published dataset from the website's canonical data/apps.json and data/tags.json files.