Skip to main content
ClaudeWave

Capture and annotate screenshots without ever leaving your IDE. Grab the whole desktop, mark it up with a full annotation toolkit, then copy, save, or pin the result — in a single keystroke

MCP ServersOfficial Registry0 stars0 forksJavaApache-2.0Updated today
Install in Claude Code / Claude Desktop
Method: NPX · genai-capture-mcp
Claude Code CLI
claude mcp add genai-capture -- npx -y genai-capture-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "genai-capture": {
      "command": "npx",
      "args": ["-y", "genai-capture-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# GenAI Capture

[![Downloads](https://img.shields.io/github/downloads/projecthsf/genai-capture/total?label=downloads)](https://github.com/projecthsf/genai-capture/releases)
[![Latest release](https://img.shields.io/github/v/release/projecthsf/genai-capture?label=latest)](https://github.com/projecthsf/genai-capture/releases/latest)

Screen capture + annotation, two ways:

- **Desktop app** — capture the whole desktop, annotate (arrows, shapes, text,
  highlighter, mosaic redaction, watermark), then copy / save / pin. Global
  hotkeys, gallery, themes. Cross-platform (Java).
- **JetBrains IDE plugin** (this repo's source) — the same engine inside any
  JetBrains IDE: GoLand, PhpStorm, PyCharm, WebStorm, IntelliJ, CLion, Rider, …

## Download the desktop app

Grab the installer for your OS from **[Releases](https://github.com/projecthsf/genai-capture/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](https://plugins.jetbrains.com/) —
search for **GenAI Capture** (or install the zip from Releases by hand).

## Use with AI agents (MCP)

The desktop app (v1.2.0+) doubles as an **MCP server**: AI agents that speak the
[Model Context Protocol](https://modelcontextprotocol.io) — 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`](mcp-npm/) launcher on npm):

```bash
claude mcp add genai-capture -- npx -y genai-capture-mcp
```

Or point directly at the installed binary (no Node needed):

```bash
claude mcp add genai-capture -- \
  "/Applications/GenAI Capture.app/Contents/MacOS/GenAI Capture" --mcp
```

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.

---

# JetBrains IDE plugin

Brings the screenshot capture + annotation engine inside any JetBrains IDE
(GoLand, PhpStorm, PyCharm, WebStorm, IntelliJ, CLion, Rider, …).

## Features

- **Tools ▸ Take Screenshot** — `⌘⇧1` (macOS) / `Ctrl+Shift+1` (Win/Linux).
  Captures the whole desktop (IDE included) and opens the annotation overlay.
- **Tools ▸ Capture Desktop (Hide IDE)** — `⌘⇧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).
- **Tools ▸ Take Delayed Screenshot ▸ 3s / 5s / 10s** — shows an on-screen
  countdown, then captures (time to switch windows or open a menu first).
- **Status-bar buttons** — a camera icon (immediate capture) and a monitor icon
  (hide-IDE desktop capture). Toggle either via the status-bar right-click menu.
- **Annotation overlay** — arrows, shapes, text, highlighter, mosaic redaction,
  watermark, with copy / save / pin.
- **Settings ▸ Tools ▸ GenAI Capture** — a **Watermark** page (appearance, default
  text, behaviour, live preview) and a **Toolbar** page (choose/reorder the tools
  on the capture toolbar). All shortcuts are rebindable in *Settings ▸ Keymap*.

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.

## How it's built

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.

## Prerequisites

- **JDK 17+** (a JBR or any JDK 17+).
- A JetBrains IDE installed (the build targets your local **GoLand** by default —
  see `build.gradle.kts`). To use a different IDE, edit the `local("…")` line, or
  switch to a downloaded one, e.g. `intellijIdeaCommunity("2024.1")`.
- Gradle: easiest is to **open this `jetbrains-plugin/` folder in IntelliJ IDEA**
  (it imports the Gradle project and provides the wrapper). Or `brew install gradle`
  and run `gradle wrapper` once.

## Run it (sandbox IDE)

```bash
cd jetbrains-plugin
./gradlew runIde          # launches GoLand with the plugin loaded
```

Then use **Tools ▸ Take Screenshot** (`⌘⇧1`) or the status-bar camera icon.

## Build an installable plugin

```bash
cd jetbrains-plugin
./gradlew buildPlugin      # -> build/distributions/genai-capture-plugin-1.0.0.zip
```

Install in any IDE: **Settings ▸ Plugins ▸ ⚙ ▸ Install Plugin from Disk…** → pick the zip.

## Notes / next steps

- The reused overlay code is verified to compile at Java 17 with no FFM /
  jnativehook dependency.
- First `runIde` may need minor tweaks to the IntelliJ Platform Gradle DSL or the
  `local(...)` IDE path for your exact versions — iterate from there.
- Possible future options: capture a chosen region only, or a configurable
  default delay.

What people ask about genai-capture

What is projecthsf/genai-capture?

+

projecthsf/genai-capture is mcp servers for the Claude AI ecosystem. Capture and annotate screenshots without ever leaving your IDE. Grab the whole desktop, mark it up with a full annotation toolkit, then copy, save, or pin the result — in a single keystroke It has 0 GitHub stars and was last updated today.

How do I install genai-capture?

+

You can install genai-capture by cloning the repository (https://github.com/projecthsf/genai-capture) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is projecthsf/genai-capture safe to use?

+

projecthsf/genai-capture has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains projecthsf/genai-capture?

+

projecthsf/genai-capture is maintained by projecthsf. The last recorded GitHub activity is from today, with 1 open issues.

Are there alternatives to genai-capture?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy genai-capture 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.

Featured on ClaudeWave: projecthsf/genai-capture
[![Featured on ClaudeWave](https://claudewave.com/api/badge/projecthsf-genai-capture)](https://claudewave.com/repo/projecthsf-genai-capture)
<a href="https://claudewave.com/repo/projecthsf-genai-capture"><img src="https://claudewave.com/api/badge/projecthsf-genai-capture" alt="Featured on ClaudeWave: projecthsf/genai-capture" width="320" height="64" /></a>

More MCP Servers

genai-capture alternatives