
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
screen-view-mcp
Advanced tools
MCP tool for capturing screenshots and analyzing them with Claude Vision API
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.
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:
# 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 screen-view-mcp@2.0.14 # Replace with latest version number
Claude Desktop:
%APPDATA%/Claude/claude_desktop_config.json
~/Library/Application Support/Claude/claude_desktop_config.json
Cursor:
%APPDATA%/Cursor/mcp.json
~/Library/Application Support/Cursor/mcp.json
CLIne:
~/.config/cline/mcp.json
Windsurf:
~/.config/windsurf/mcp.json
{
"mcpServers": {
"screen-view-mcp": {
"command": "npx",
"args": [
"screen-view-mcp@2.0.14" // Specify exact version to avoid caching issues
],
"transport": "stdio",
"env": {
"ANTHROPIC_API_KEY": "your-anthropic-api-key"
}
}
}
}
If you encounter problems with the npm installation (such as "Invalid file signature" errors):
npm install -g screen-view-mcp@2.0.14 # Replace with latest version number
npm cache clean --force
npm install -g screen-view-mcp@2.0.14
# Create a local package file
npm pack
# Install from the local file
npm install -g ./screen-view-mcp-2.0.14.tgz
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?
git clone https://github.com/yourusername/screen-view-mcp.git
cd screen-view-mcp
npm install
npm run build
node dist/index.js --api-key=your-anthropic-api-key
MIT
FAQs
MCP tool for capturing screenshots and analyzing them with Claude Vision API
The npm package screen-view-mcp receives a total of 27 weekly downloads. As such, screen-view-mcp popularity was classified as not popular.
We found that screen-view-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.