Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables screen capture, OCR text extraction, and automated clicking on macOS through MCP. Supports fullscreen, window, and region capture with optional text recognition and monitoring.

README.md

Screen Vision MCP Server

A Model Context Protocol (MCP) server that provides comprehensive screen capture, OCR, and visual understanding capabilities for macOS.

Features

  • capture_fullscreen: Capture the entire screen
  • capture_window: Capture specific application windows
  • capture_region: Capture defined screen regions
  • extract_text_from_screen: OCR text extraction from screenshots
  • find_text_on_screen: Locate text on screen and return coordinates
  • get_window_list: List all open windows with details
  • get_screen_info: Get display and screen information
  • click_at_position: Automated clicking at specific coordinates
  • monitor_screen_region: Monitor regions for changes over time
  • Screenshot resource management and retrieval

Installation

Quick Install

npm install -g screen-vision-mcp

From Source

  1. Clone the repository:
   git clone https://github.com/TIMBOTGPT/screen-vision-mcp.git
   cd screen-vision-mcp
  1. Install dependencies:
   npm install
  1. Test the server:
   npm start

Usage with Claude Desktop

Add this server to your Claude Desktop MCP configuration (claude_desktop_config.json):

{
  "mcpServers": {
    "screen-vision": {
      "command": "npx",
      "args": ["-y", "screen-vision-mcp"],
      "description": "Screen capture and vision analysis"
    }
  }
}

Or if installed locally: ``json { "mcpServers": { "screen-vision": { "command": "node", "args": ["/path/to/screen-vision-mcp/index.js"], "description": "Screen capture and vision analysis" } } } ``

Available Tools

capture_fullscreen

Capture the entire screen.

Parameters:

  • save_path (optional): Custom save path for the screenshot

Example: ``json { "name": "capture_fullscreen", "arguments": { "save_path": "/path/to/save/screenshot.png" } } ``

capture_window

Capture a specific application window.

Parameters:

  • app_name (required): Name of the application (e.g., "Safari", "Terminal")
  • save_path (optional): Custom save path

Example: ``json { "name": "capture_window", "arguments": { "app_name": "Safari", "save_path": "/path/to/save/window.png" } } ``

capture_region

Capture a specific region of the screen.

Parameters:

  • x (required): X coordinate
  • y (required): Y coordinate
  • width (required): Width of region
  • height (required): Height of region
  • save_path (optional): Custom save path

extract_text_from_screen

Capture screen and extract text using OCR.

Parameters:

  • region (optional): Specific region to capture
  • x, y, width, height: Region coordinates

find_text_on_screen

Find text on screen and return its location.

Parameters:

  • text (required): Text to search for
  • case_sensitive (optional): Whether search should be case sensitive (default: false)

get_window_list

Get list of all open windows with their positions.

get_screen_info

Get information about available screens/displays.

click_at_position

Click at a specific screen position.

Parameters:

  • x (required): X coordinate
  • y (required): Y coordinate
  • button (optional): Mouse button ('left', 'right', 'middle', default: 'left')
  • double_click (optional): Whether to double-click (default: false)

monitor_screen_region

Monitor a screen region for changes over time.

Parameters:

  • x, y, width, height (required): Region to monitor
  • duration_seconds (optional): How long to monitor (max 30 seconds, default: 5)
  • interval_ms (optional): Check interval in milliseconds (default: 1000)

Requirements

  • macOS (uses native screencapture command)
  • Node.js 16+
  • Claude Desktop with MCP support
  • Screen recording permissions for automation features

Permissions

On first use, macOS may request permissions for:

  • Screen recording
  • Accessibility (for clicking automation)
  • File system access (for saving screenshots)

Grant these permissions in System Preferences > Security & Privacy.

Screenshots Storage

Screenshots are automatically saved to a screenshots/ directory within the server folder. You can:

  • Access screenshots via the resource URI system
  • Specify custom save paths for individual captures
  • View saved screenshots through Claude's resource system

Development

# Install dependencies
npm install

# Start development server
npm run dev

# Run tests
npm test

Advanced Features

OCR Integration

The server includes hooks for macOS Vision framework integration for advanced OCR capabilities. Full OCR requires additional setup with native macOS Vision APIs.

Automation

The clicking and monitoring features enable automation workflows when combined with other MCP servers.

Security

  • All screen captures require explicit permission
  • File system access is controlled by macOS permissions
  • No network access required for core functionality

License

MIT License - see LICENSE file for details

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

Support

For issues and questions, please use the GitHub Issues page.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Observability servers.