The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Genai Capture listing page.
Screen capture + annotation, two ways:
Grab the installer for your OS from Releases:
| OS | File |
|---|---|
| macOS | GenAI Capture-<version>.dmg |
| Windows (installer) | GenAI Capture-<version>.exe |
| Windows (portable) | GenAI-Capture-portable-win.zip |
macOS note: the app isn't notarized yet. If macOS blocks the first launch, allow it under System Settings ▸ Privacy & Security ▸ "Open Anyway", and grant Screen Recording permission when asked. Details ship in the DMG's First Launch.txt.
The plugin is on the JetBrains Marketplace — search for GenAI Capture (or install the zip from Releases by hand).
The desktop app (v1.2.0+) doubles as an MCP server: AI agents that speak the Model Context Protocol — Claude Code, Claude Desktop, Cursor, … — can capture your screen, look at the image, annotate it (arrows, boxes, text, highlight, blur/redact), and save the result. Visual bug reports and before/after proof, driven by one sentence to your AI.
Install the desktop app, then add the server to your client. Easiest (cross-platform,
via the genai-capture-mcp launcher on npm):
Or point directly at the installed binary (no Node needed):
Tools: capture_fullscreen, capture_region, annotate, get_image,
save_image. Captures play an audible cue; everything runs locally — images
only go to the AI client you connected.
Brings the screenshot capture + annotation engine inside any JetBrains IDE (GoLand, PhpStorm, PyCharm, WebStorm, IntelliJ, CLion, Rider, …).
⌘⇧1 (macOS) / Ctrl+Shift+1 (Win/Linux).
Captures the whole desktop (IDE included) and opens the annotation overlay.⌘⇧2 / Ctrl+Shift+2.
Temporarily hides the IDE, captures the desktop behind it, and keeps the IDE
hidden until you dismiss the overlay (ESC / save / copy / pin / close).On macOS, grant the IDE Screen Recording permission (System Settings ▸ Privacy & Security ▸ Screen Recording) or the capture comes back black — same requirement as any screen-capture tool.
It reuses the desktop app's code (../src/main/java + ../src/main/resources)
via a Gradle Copy step that filters out the app shell and the parts that don't
load inside the IDE's JBR (the osystem/ FFM code, jnativehook global-hotkey, tray,
and the desktop-themed Settings panels). Thin FFM-free shims under
src/main/java/io/genai/screenshot/ (osystem/AbstractOs, CaptureController,
ScreenshotApp) satisfy the few OS calls the overlay makes. The capture itself uses
java.awt.Robot (no native code). The plugin's own actions, settings pages, and
status-bar widgets live under src/main/java/io/genai/screenshot/plugin/.
Built against the platform module only (com.intellij.modules.platform), so a
single build runs in every JetBrains IDE.
build.gradle.kts). To use a different IDE, edit the local("…") line, or
switch to a downloaded one, e.g. intellijIdeaCommunity("2024.1").jetbrains-plugin/ folder in IntelliJ IDEA
(it imports the Gradle project and provides the wrapper). Or brew install gradle
and run gradle wrapper once.Then use Tools ▸ Take Screenshot (⌘⇧1) or the status-bar camera icon.
Install in any IDE: Settings ▸ Plugins ▸ ⚙ ▸ Install Plugin from Disk… → pick the zip.
runIde may need minor tweaks to the IntelliJ Platform Gradle DSL or the
local(...) IDE path for your exact versions — iterate from there.