snip-mcp
An MCP server for capturing screen regions directly into Claude Code conversations via hotkeys or tool calls. It provides Windows-specific screen snipping with multi-monitor support, persistent storage, and automatic management of captured images.
README
snip-mcp
An MCP server that lets you capture screen regions directly into your Claude Code conversations. Select any area of your screen using a hotkey or tool call, and the screenshot is immediately available as an image in context.
Features
- Hotkey capture -- Ctrl+Shift+Click opens a snipping overlay anywhere, anytime
- Tool-triggered capture -- Claude can invoke the snipping tool on your behalf
- Multi-monitor support -- works across all connected displays with DPI awareness
- Persistent storage -- snips are saved to disk and survive server restarts
- Auto-pruning -- configurable limit prevents unbounded storage growth
- Toast notifications -- visual confirmation when a snip is captured
Requirements
- Windows 10 or later (uses Windows-specific global mouse hooks via ctypes)
- Python 3.11+
Installation
git clone https://github.com/Alparse/snip-mcp.git
cd snip-mcp
pip install -e .
Or with uv:
git clone https://github.com/Alparse/snip-mcp.git
cd snip-mcp
uv pip install -e .
Claude Code Configuration
Add the server to your Claude Code MCP settings.
If installed via pip (global or venv)
In ~/.claude/settings.json (global) or .claude/settings.json (project):
{
"mcpServers": {
"snip": {
"command": "snip-mcp"
}
}
}
If using uv (recommended for isolation)
{
"mcpServers": {
"snip": {
"command": "uv",
"args": ["run", "--directory", "/path/to/snip-mcp", "snip-mcp"]
}
}
}
Usage
Hotkey capture
Press Ctrl+Shift+Left Click anywhere on screen to open the snipping overlay:
- Click and drag to select a region
- Release to capture
- Press Escape to cancel
A toast notification confirms the capture.
Tool-triggered capture
Ask Claude to take a screenshot -- it will invoke the snip_screen tool and open the overlay for you.
Managing snips
These MCP tools are available to Claude:
| Tool | Description |
|---|---|
snip_screen |
Open the overlay and capture a region |
get_snip |
Retrieve a snip by name |
get_latest_snip |
Get the most recent capture |
list_snips |
List all stored snips |
rename_snip |
Rename a snip |
delete_snip |
Delete a snip |
Configuration
Configuration is stored at ~/.snip_mcp/config.json and auto-created on first run.
| Option | Default | Description |
|---|---|---|
modifier_keys |
["ctrl", "shift"] |
Modifier keys held while clicking to trigger the overlay. Valid values: ctrl, shift, alt |
save_directory |
~/.snip_mcp/snips/ |
Directory where snip PNGs are stored |
overlay_alpha |
0.3 |
Overlay transparency (0.0 = invisible, 1.0 = opaque) |
selection_color |
"#00ff00" |
Selection rectangle color (hex) |
selection_width |
2 |
Selection rectangle border width in pixels |
max_snips |
50 |
Maximum stored snips before oldest are auto-pruned |
Example config:
{
"modifier_keys": ["ctrl", "shift"],
"save_directory": "C:/Users/you/.snip_mcp/snips",
"overlay_alpha": 0.3,
"selection_color": "#00ff00",
"selection_width": 2,
"max_snips": 50
}
Troubleshooting
"snip-mcp requires Windows" This server uses Windows-specific APIs (global mouse hooks via ctypes). It cannot run on macOS or Linux.
"Failed to install mouse hook" The global mouse hook may require elevated permissions. Try running your terminal as administrator.
Overlay doesn't appear
Ensure no other application is intercepting Ctrl+Shift+Click. Verify modifier_keys in your config.
Coordinates are offset on high-DPI displays
The server calls SetProcessDPIAware() on startup. If you still see offset issues, check your Windows display scaling settings.
Snips directory
By default, snips are stored in ~/.snip_mcp/snips/. You can change this in config.json.
License
MIT -- see LICENSE for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.