Server data from the Official MCP Registry
Your recent screen captures as structured JSON your AI agent can read. Local only, no network.
Your recent screen captures as structured JSON your AI agent can read. Local only, no network.
SlimSnap MCP is a well-designed, read-only local file server with strong security fundamentals. The codebase demonstrates careful attention to path traversal prevention, input validation, and explicit design decisions to avoid network access and credential handling. Minor code quality observations exist but do not materially impact security. Supply chain analysis found 1 known vulnerability in dependencies (0 critical, 1 high severity). Package verification found 1 issue.
4 files analyzed · 4 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-bickov-slimsnap": {
"args": [
"-y",
"@slimsnap/mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Your recent screen captures, as structured data your AI can actually read.
Take a capture in SlimSnap, mark what you mean, then in Claude or Cursor say "look at my last capture". No pasting, no file paths, no clipboard.
Not a screenshot. A JSON document: every piece of text on screen with its position and colour, plus the arrows, boxes and callouts you drew, and which element each one points at.
That matters for three reasons.
A screenshot pasted into an agent gets downscaled before the model reads it, and nobody tells you. Anthropic's own docs say to pre-resize and crop your images because resizing "might make text less legible". A tall page loses its text entirely.
Images returned over MCP are worse still. In Claude Code they are passed through as text rather than native image blocks, costing roughly 15-25k tokens against about 1.6k for the same image pasted directly, and the model cannot read them at all (claude-code#31208, closed as not planned). A big enough result blows the per-result token ceiling outright (#9152).
And an oversized screenshot can poison a session permanently. It stays in context, gets re-sent every turn, and there is no way to remove it (#55040).
This connector sidesteps all three by never sending the picture. An ordinary screen costs roughly a third less than the same screen as an image, and on a tall page the comparison stops being about cost at all: shrinking an 18,410 pixel page to fit the model's 1568 pixel limit leaves body text 1.4 pixels tall, so the cheap image is cheap because it is unreadable. Either way the agent gets exact coordinates rather than a guess about which button you meant.
When you genuinely need pixels (visual style, spacing, colour balance) there is a separate tool for that, and the image is already downscaled to a size the model can read.
Claude Code
claude mcp add slimsnap -- npx -y @slimsnap/mcp
Then check it: /mcp should list slimsnap with 4 tools.
Claude Desktop
Download slimsnap-mcp.mcpb from Releases and open it. Claude shows an install dialog. The connector then appears under Settings.
Cursor
Or add it by hand to .cursor/mcp.json in your project, or ~/.cursor/mcp.json for every project:
{
"mcpServers": {
"slimsnap": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@slimsnap/mcp"]
}
}
}
Project config wins over global when both exist. Then ask Cursor about your last capture the same way you would ask Claude.
As a Claude Code plugin (same connector, installed and updated as a plugin)
/plugin marketplace add bickov/slimsnap-mcp
/plugin install slimsnap@slimsnap
You need SlimSnap 0.5.0 or newer, because that is the version that started keeping recent captures on disk.
The first time Claude Code uses each tool it asks for permission, and the approval is scoped to the folder you were in. Four tools means four prompts, and they come back in the next project. Nothing is wrong; that is how Claude Code gates MCP tools.
To approve them once, everywhere, add this to ~/.claude/settings.json:
{
"permissions": {
"allow": [
"mcp__slimsnap__get_latest_capture",
"mcp__slimsnap__list_captures",
"mcp__slimsnap__get_capture",
"mcp__slimsnap__get_capture_image"
]
}
}
If the file already exists, merge the allow entries into it rather than replacing it. Restart Claude Code afterwards.
| Tool | What it does |
|---|---|
get_latest_capture | The newest capture as structured JSON. This is the one that gets used most. |
list_captures | Recent captures newest first, with a text preview. Use it to find an older one, or to work through several marked screens at once. |
get_capture | One capture by id. |
get_capture_image | One frame as a downscaled image, for when the JSON cannot answer the question. |
Four tools on purpose. Tool descriptions are charged against your context window on every turn, so the surface stays small.
Two sample captures live in samples/ — one single screen, one
three-frame scroll capture, both with an arrow resolved to the element it points
at. Copy either into ~/.slimsnap/recent/ and the connector will read it, so you
can try all four tools before installing SlimSnap.
mkdir -p ~/.slimsnap/recent
cp -R samples/single-frame ~/.slimsnap/recent/2026-07-30T09-00-00-000000-00-00
Then ask your agent what did I mark in my last capture? — it should come back with the Save changes button and the note attached to it.
SlimSnap keeps your recent captures in ~/.slimsnap/recent/, newest 20 by default. Each capture is a folder with capture.json, a small meta.json index, and one PNG per frame capped at 1568px on the long edge.
The connector finds that folder by reading ~/.slimsnap/config.json, which SlimSnap rewrites whenever your settings change. Move your save folder and the connector follows, with nothing to reconfigure.
Change how many are kept, or turn the cache off entirely, in SlimSnap under Settings, Export, Recent captures. There is a Clear button in the same place.
The server reads files under your home directory and talks to nobody. There is no network code in it. It cannot capture your screen and it cannot ask SlimSnap to capture your screen. It only reads captures you already took and chose to keep.
Nothing is uploaded, there is no account, and no telemetry.
No personal data is collected, stored, transmitted or shared. The server has no network code and no analytics. Full policy: https://slimsnap.ai/privacy.
SlimSnap 0.5.0 or newer, macOS or Windows. Works with Claude Code, Claude Desktop and Cursor.
Codex is not supported yet. It caps a single tool result at about 10 KB, which a real capture goes past, and it drops image content when structured output is present (codex#7906, #10334). Both are open upstream.
The Claude Desktop route needs nothing else: Desktop ships its own Node and the .mcpb bundle uses it. The Claude Code route runs node from your PATH, so it needs Node 18 or newer installed. That catches people out on a fresh Windows machine, where Node usually isn't there.
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.