snip-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@snip-mcpcapture the error message on my second monitor"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 |
| Open the overlay and capture a region |
| Retrieve a snip by name |
| Get the most recent capture |
| List all stored snips |
| Rename a snip |
| Delete a snip |
Configuration
Configuration is stored at ~/.snip_mcp/config.json and auto-created on first run.
Option | Default | Description |
|
| Modifier keys held while clicking to trigger the overlay. Valid values: |
|
| Directory where snip PNGs are stored |
|
| Overlay transparency (0.0 = invisible, 1.0 = opaque) |
|
| Selection rectangle color (hex) |
|
| Selection rectangle border width in pixels |
|
| 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.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Alparse/snip-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server