WinSight MCP
Click on "Install 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., "@WinSight MCPTake a screenshot of my 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.
WinSight MCP
mcp-name: io.github.TheoEwzZer/winsight
Windows Screen Capture MCP Server — give Claude Code eyes on your Windows desktop.
WinSight is an MCP server that lets Claude Code capture your screen, manage windows, and launch applications on Windows.
Features
Screenshot the full screen, a specific region, or a specific window
Window capture uses Win32
PrintWindowAPI — captures the real window content even when it's behind other windowsList and inspect open windows and monitors (title, position, size, state, resolution)
Control windows — move, resize, minimize, maximize, restore, and focus
Launch applications and wait for their windows
Related MCP server: snip-mcp
Requirements
Windows 10/11
Python 3.10+
Quick Start
Option 1: uvx (recommended)
No install needed — runs directly:
{
"mcpServers": {
"winsight": {
"command": "uvx",
"args": ["winsight-mcp"]
}
}
}Add this to your project's .mcp.json or ~/.claude/claude_desktop_config.json.
Option 2: pip install
pip install winsight-mcpThen configure:
{
"mcpServers": {
"winsight": {
"command": "winsight-mcp"
}
}
}Option 3: From source
git clone https://github.com/TheoEwzZer/WinSight-MCP.git
cd WinSight-MCP
uv sync{
"mcpServers": {
"winsight": {
"command": "uv",
"args": ["--directory", "/path/to/WinSight-MCP", "run", "winsight-mcp"]
}
}
}Tools
Screenshot
Tool | Description |
| Capture the full screen or a specific monitor |
| Capture a specific window by title (works even if behind other windows) |
| Capture a rectangular region of the screen |
Window Management
Tool | Description |
| List all visible windows with optional title filter |
| Get detailed info about a window (position, size, state) |
| Bring a window to the foreground |
| Resize a window to specific dimensions |
| Move a window to a specific position |
| Minimize a window to the taskbar |
| Maximize a window to fill the screen |
| Restore a minimized or maximized window to its normal state |
| Wait for a window to appear (adaptive polling with timeout) |
System
Tool | Description |
| List all monitors with resolution, position, and primary flag |
| Launch an application and optionally wait for its window |
Examples
Once the MCP server is connected, you can ask Claude Code things like:
"Take a screenshot of my screen"
"List all open windows"
"Capture the Notepad window"
"Open calculator and take a screenshot of it"
"Focus the Chrome window"
"Resize the app window to 800x600 and take a screenshot"
"Move the window to the top-left corner"
"What monitors do I have?"
Testing
The project has 112 tests covering all modules. Tests use mocks for Win32 APIs so they run on any platform.
Running tests
uv run pytestTest structure
tests/
conftest.py # Shared fixtures and Win32 stubs
test_types.py # TypedDict definitions validation
test_screenshot.py # Screen/region/window capture (mss, Win32 DC)
test_window_manager.py # Window listing, find, focus, resize, move, min/max/restore
test_process_manager.py # Application launch and window polling
test_server.py # MCP tool registration and integrationAdding tests
Put new tests in the matching
test_<module>.pyfileUse the shared fixtures from
conftest.py(sample_window_info,mcp_server,fake_png_bytes)Mock Win32 APIs with
@patch("winsight_mcp.<module>.win32gui")— never call real Win32 functions in testsFor server integration tests, use the
_callhelper to invoke tools and_textto extract string results
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheoEwzZer/WinSight-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server