Local MCP server for SlimSnap. Gives Claude your recent screen captures as structured JSON with OCR text, coordinates and your annotations, instead of a screenshot you have to paste.
claude mcp add slimsnap-mcp -- npx -y @slimsnap/mcp{
"mcpServers": {
"slimsnap-mcp": {
"command": "npx",
"args": ["-y", "@slimsnap/mcp"]
}
}
}MCP Servers overview
# SlimSnap connector
Your recent screen captures, as structured data your AI can actually read.
Take a capture in [SlimSnap](https://slimsnap.ai), mark what you mean, then in Claude or Cursor say "look at my last capture". No pasting, no file paths, no clipboard.
## What your agent gets
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](https://github.com/anthropics/claude-code/issues/31208), closed as not planned). A big enough result blows the per-result token ceiling outright ([#9152](https://github.com/anthropics/claude-code/issues/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](https://github.com/anthropics/claude-code/issues/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.
## Install
**Claude Code**
```bash
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](https://github.com/bickov/slimsnap-mcp/releases) and open it. Claude shows an install dialog. The connector then appears under Settings.
**Cursor**
[](cursor://anysphere.cursor-deeplink/mcp/install?name=slimsnap&config=eyJ0eXBlIjoic3RkaW8iLCJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBzbGltc25hcC9tY3AiXX0%3D)
Or add it by hand to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:
```json
{
"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.
### Approving the tools
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`:
```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.
## Tools
| 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.
## See a real capture
Two sample captures live in [`samples/`](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.
```bash
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.
## Where the data lives
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.
## Privacy Policy
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>.
## Requirements
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](https://github.com/openai/codex/issues/7906), [#10334](https://github.com/openai/codex/issues/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.
## License
MIT
What people ask about slimsnap-mcp
What is bickov/slimsnap-mcp?
+
bickov/slimsnap-mcp is mcp servers for the Claude AI ecosystem. Local MCP server for SlimSnap. Gives Claude your recent screen captures as structured JSON with OCR text, coordinates and your annotations, instead of a screenshot you have to paste. It has 0 GitHub stars and was last updated today.
How do I install slimsnap-mcp?
+
You can install slimsnap-mcp by cloning the repository (https://github.com/bickov/slimsnap-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is bickov/slimsnap-mcp safe to use?
+
bickov/slimsnap-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.
Who maintains bickov/slimsnap-mcp?
+
bickov/slimsnap-mcp is maintained by bickov. The last recorded GitHub activity is from today, with 0 open issues.
Are there alternatives to slimsnap-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy slimsnap-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/bickov-slimsnap-mcp)<a href="https://claudewave.com/repo/bickov-slimsnap-mcp"><img src="https://claudewave.com/api/badge/bickov-slimsnap-mcp" alt="Featured on ClaudeWave: bickov/slimsnap-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!