rudycanshoot
Allows Codeium's Windsurf to capture fullscreen, active window, or region screenshots and view them.
Allows GitHub Copilot to capture fullscreen, active window, or region screenshots and view them.
Click on "Deploy 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., "@rudycanshoottake a screenshot of the current screen"
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.
rudycanshoot
An MCP server + CLI that lets AI assistants take and view screenshots. Works with Claude Code, Cursor, Windsurf, Codex CLI, Gemini CLI, OpenCode, Continue, Cline, Aider, and GitHub Copilot.
Install
npm install -g rudycanshootOr run without installing:
npx -y rudycanshoot serveRelated MCP server: webdev-mcp
Quick Start
1. Auto-configure your AI tools
# All tools at once
rudycanshoot install --all
# Or a specific tool
rudycanshoot install --tool claude-code
rudycanshoot install --tool cursor
rudycanshoot install --tool windsurf
rudycanshoot install --tool codex
rudycanshoot install --tool gemini
rudycanshoot install --tool opencode
rudycanshoot install --tool continue
rudycanshoot install --tool cline2. Restart your AI tool
The MCP server will now appear in your AI assistant's tool list.
3. Use it
Ask your AI: "Take a screenshot and show me what's on screen."
MCP Tools
Tool | Description |
| Capture fullscreen, active window, or a region |
| Read a saved image so the AI can view it |
| List recent captures |
| Record a temporary screen video; returns frames the AI can watch |
| Record a TERMINAL SESSION (a running command) as a GIF — no desktop, works headless |
| Extract frames from a saved video for visual review |
| List recent recordings |
| Delete temporary (or all) recordings |
take_screenshot parameters
Parameter | Type | Default | Description |
|
|
| What to capture |
| string | — |
|
| string | auto | Output filename |
| string |
| Where to save |
CLI
# Take a screenshot
rudycanshoot capture
rudycanshoot capture --mode window
rudycanshoot capture --mode area --area 0,0,1920,1080
rudycanshoot capture --output /tmp/snap.png
# List recent screenshots
rudycanshoot list
# Record a temporary screen video (AI can read frames via MCP)
rudycanshoot record --duration 5 --fps 4
rudycanshoot videos
rudycanshoot cleanup-videos
# Start MCP server (used by AI tools — usually run automatically)
rudycanshoot serve
# Configure AI tools
rudycanshoot install --allSupported AI Tools
Tool | Config location | What's installed |
Claude Code |
| MCP server entry + |
Cursor |
| MCP server entry |
Windsurf |
| MCP server entry |
Codex CLI |
| Tool documentation |
Gemini CLI |
| MCP server entry |
OpenCode |
| MCP server + agent |
Continue |
| MCP server entry |
Cline |
| Rules file |
Aider |
| Comment reference |
GitHub Copilot |
| Instructions |
Screenshot Backends
Linux
Unlike macOS/Windows, Linux has no single built-in screencapture binary. rudycanshoot uses silent backends only (no permission popups — xdg-desktop-portal is intentionally skipped).
Tried in order when available:
Tool | Display | Notes |
| Wayland |
|
| Wayland | only non-interactive |
| X11 | optional packages |
| X11 | X11 built-in dump → PNG (no ImageMagick needed) |
| X11 | same encoder already used for video |
WSL → PowerShell | — | Windows host desktop when Linux tools are missing |
Video (Linux)
Same rule: silent only (no portal ScreenCast prompts).
Backend | When |
|
|
| Wayland, if installed |
screenshot frames → MP4/GIF | fallback using the silent screenshot chain |
macOS/Windows video uses ffmpeg avfoundation / gdigrab.
macOS
Uses the built-in screencapture command — no extra install needed.
Windows
Uses PowerShell + System.Windows.Forms — no extra install needed.
Project Config Files (for contributors)
When you clone this repo, your AI tool will auto-discover:
File | Tool |
| Claude Code |
| Codex CLI, OpenCode |
| Gemini CLI |
| GitHub Copilot |
| Cursor |
| Claude Code (project-level) |
| Windsurf |
| Cline |
| Claude Code |
| OpenCode agent |
License
MIT
Image Processing
Function | Description |
| Add text label to a screenshot |
| Highlight/heatmap/side-by-side diff |
| Pixel-level similarity metrics |
| Color overlays with labels |
| Fill or blur sensitive areas |
| Corner text watermark |
| Solid border with optional radius |
| Crop to a region |
| Resize preserving aspect ratio |
| Horizontal or vertical concat |
| N×M grid composite |
| Animated GIF from PNG frames |
| Extract text via Tesseract |
Pipeline API
import { Pipeline } from "rudycanshoot";
const path = await Pipeline.capture({ mode: "fullscreen" })
.annotate("CT-6101 Boson capture", { position: "bottom" })
.redact([{ x: 0, y: 0, w: 1920, h: 30 }], { style: "blur" })
.watermark("CONFIDENTIAL", { corner: "br" })
.save("/tmp/final.png");This server cannot be deployed
Maintenance
Related MCP Connectors
An MCP server that integrates with Discord to provide AI-powered features.
MCP server for Qwen Image 3 AI image generation
MCP server for AI dialogue using various LLM models via AceDataCloud
Official MCP server for Agentwork — delegate tasks to AI agents with human-in-the-loop
Related MCP Servers
- AlicenseBqualityBmaintenanceAn official MCP server implementation that allows AI assistants to capture website screenshots through the ScreenshotOne API, enabling visual context from web pages during conversations.115 npm36MIT
- AlicenseBqualityDmaintenanceAn MCP server providing web development tools such as screen capturing capabilities that let AI agents take and work with screenshots of the user's screen.232 npm15MIT
- AlicenseBqualityDmaintenanceAn MCP server that enables AI assistants to capture and analyze web page screenshots using Puppeteer, supporting multi-breakpoint captures, error reporting, and page interactions.135 npm6MIT
- AlicenseNot gradedqualityBmaintenanceA plugin-based MCP server that enables AI assistants to interact with external systems through custom tools, resources, and prompts.4AGPL 3.0