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

screen-view-mcp

v2.0.15

Published

MCP tool for capturing screenshots and analyzing them with Claude Vision API

Readme

📸 screen-view-mcp

Node.js 18+ License: MIT Code style: prettier smithery badge

A powerful Model Context Protocol (MCP) tool that enables AI assistants to capture and analyze screenshots using Claude Vision API. Take screenshots, analyze screen content, and get AI insights about your desktop interface.

✨ Features

  • 📸 Instant full-screen screenshot capture
  • 🔍 AI-powered scene analysis with Claude Vision
  • 🤖 Seamless integration with MCP-compatible AI assistants
  • 🛠️ Easy configuration and setup

🎯 Use Cases

  • Capture and analyze screenshots of your desktop
  • Analyze UI elements and layouts
  • Debug visual issues with screen captures
  • Get AI insights about screen content
  • Document interface elements and layouts
  • Screen recording and analysis
  • Desktop automation with visual feedback

🚀 Quickstart

Installing via Smithery

The easiest way to install Screen View MCP is through Smithery:

# For Claude Desktop
npx @smithery/cli install @hemenge133/screen-view-mcp --client claude --env.anthropicApiKey=your-api-key

# For Cursor
npx @smithery/cli install @hemenge133/screen-view-mcp --client cursor --env.anthropicApiKey=your-api-key

# For CLIne
npx @smithery/cli install @hemenge133/screen-view-mcp --client cline --env.anthropicApiKey=your-api-key

# For Windsurf
npx @smithery/cli install @hemenge133/screen-view-mcp --client windsurf --env.anthropicApiKey=your-api-key

You can also run it directly through Smithery:

npx @smithery/cli run @hemenge133/screen-view-mcp --env.anthropicApiKey=your-api-key

This will automatically:

  1. Install the package
  2. Configure your AI client
  3. Set up environment variables

Manual Installation

  1. Install the package:
# Install the latest version
npm install -g screen-view-mcp

# To ensure you get the exact latest version and avoid caching issues
npm install -g [email protected]  # Replace with latest version number
  1. Add to your AI client config file:

Claude Desktop:

  • Windows: %APPDATA%/Claude/claude_desktop_config.json
  • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Cursor:

  • Windows: %APPDATA%/Cursor/mcp.json
  • MacOS: ~/Library/Application Support/Cursor/mcp.json

CLIne:

  • ~/.config/cline/mcp.json

Windsurf:

  • ~/.config/windsurf/mcp.json
{
  "mcpServers": {
    "screen-view-mcp": {
      "command": "npx",
      "args": [
        "[email protected]"  // Specify exact version to avoid caching issues
      ],
      "transport": "stdio",
      "env": {
        "ANTHROPIC_API_KEY": "your-anthropic-api-key"
      }
    }
  }
}

Troubleshooting Installation Issues

If you encounter problems with the npm installation (such as "Invalid file signature" errors):

  1. Try installing with an explicit version number:
npm install -g [email protected]  # Replace with latest version number
  1. Clear npm cache and reinstall:
npm cache clean --force
npm install -g [email protected]
  1. Install directly from a local tarball:
# Create a local package file
npm pack

# Install from the local file
npm install -g ./screen-view-mcp-2.0.14.tgz

📝 Available Tool

mcp_screen_view_mcp_captureAndAnalyzeScreen

Captures and analyzes the current screen content.

Parameters:

{
  prompt?: string;      // Custom prompt for analysis
  modelName?: string;   // Claude model to use
  saveScreenshot?: boolean; // Save screenshot locally
}

Example usage in Claude:

Can you analyze what's on my screen right now and describe the layout?

🔧 Development

  1. Clone and install:
git clone https://github.com/yourusername/screen-view-mcp.git
cd screen-view-mcp
npm install
  1. Build:
npm run build
  1. Test locally:
node dist/index.js --api-key=your-anthropic-api-key

📜 License

MIT