Privacy-first macOS MCP server that provides visual context for AI agents through window screenshots
A privacy-first, macOS-only MCP server that enables AI agents to capture screenshots of pre-approved application windows, providing secure visual context for development and debugging tasks.
[!IMPORTANT] Requires Screen Capture permission + Window Approval Setup - see instructions below.
Unlike other screenshot tools, Screeny requires explicit user approval for each window before it can be captured:
listWindows
- Lists all approved application windows available for screenshot capture.
takeScreenshot
- Captures a screenshot of a specific window by its ID.
screeny://info
- Server information and configuration detailsFirst install with: pipx install mcp-server-screeny
{
"mcpServers": {
"screeny": {
"command": "mcp-server-screeny",
"args": []
}
}
}
Note: If you get an
ENOENT
error, replace"mcp-server-screeny"
with the full path to the executable (find it withwhich mcp-server-screeny
in your terminal).
{
"mcpServers": {
"screeny": {
"command": "uvx",
"args": ["mcp-server-screeny"]
}
}
}
Note: If you get a "spawn uvx ENOENT" error, replace
"uvx"
with the full path to uvx:which uvx # Find your uvx path
Then use that full path in the config (e.g.,
"/opt/homebrew/bin/uvx"
).
First install with: pipx install mcp-server-screeny
{
"mcpServers": {
"screeny": {
"command": "mcp-server-screeny",
"args": []
}
}
}
Note: If you get an
ENOENT
error, replace"mcp-server-screeny"
with the full path to the executable (find it withwhich mcp-server-screeny
in your terminal).
{
"mcpServers": {
"screeny": {
"command": "uvx",
"args": ["mcp-server-screeny"]
}
}
}
Note: If you get a "spawn uvx ENOENT" error, replace
"uvx"
with the full path to uvx:which uvx # Find your uvx path
Then use that full path in the config (e.g.,
"/opt/homebrew/bin/uvx"
).
Important: Grant permission before running window approval.
Note: You need to grant Screen Capture permission to BOTH:
- Your Terminal application (Terminal.app, iTerm2, etc.) - Required for running setup (can be disabled after)
- Your MCP host (Claude Desktop, Cursor) - Required for taking screenshots
To add them:
- Open System Settings > Privacy & Security > Screen & System Audio Recording
- Click the "+" button
- Add your Terminal application AND your MCP host application
- Restart both applications after granting permissions
After configuring your MCP client above, approve which windows can be captured.
# Interactive approval
mcp-server-screeny --setup
# Auto-approve all current windows
mcp-server-screeny --setup --allow-all
# Interactive approval
uvx mcp-server-screeny --setup
# Auto-approve all current windows
uvx mcp-server-screeny --setup --allow-all
Approvals are saved to ~/.screeny/approved_windows.json
. Re-run setup when you want to update the list of approved windows.
# Test window detection and permissions
mcp-server-screeny --debug
# Re-run setup if windows changed
mcp-server-screeny --setup
"spawn uvx ENOENT" error
"uvx"
which uvx
"/opt/homebrew/bin/uvx"
or "/usr/local/bin/uvx"
"No approved windows found"
mcp-server-screeny --setup
first (or uvx mcp-server-screeny --setup
if using uvx)"Screen Recording permission required" or "No windows found"
Pull requests are welcome! Feel free to contribute new ideas, bug fixes, or enhancements.
This is my first MCP project - if you encounter any bugs, please open an issue and I'll do my best to fix them!
I created this tool to streamline my mobile development workflow. I was tired of manually taking screenshots repeatedly to describe UI issues. With Screeny, Cursor can directly capture screenshots of my iOS simulator and iterate on the design in a loop. I'm excited to see how others will use this!
MIT License