Zeuxis MCP Server

Zeuxis is a local MCP screenshot server that lets AI agents capture the current desktop, windows, cursor regions, and exact rectangles through MCP

Local serverstdioGo

What is the Zeuxis MCP server?

Most browser automation work still happens through a UI a human drives. Zeuxis MCP server moves it into the conversation instead. Zeuxis is a local MCP screenshot server that lets AI agents capture the current desktop, windows, cursor regions, and exact rectangles through MCP tools.

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • list_monitors — none
  • list_windows — focused_only?, include_system_windows?, app_contains?, title_contains?
  • get_runtime_diagnostics — none
  • get_latest_capture — none
  • list_session_artifacts — none
  • clear_session_artifacts — none
  • capture_screen — monitor_id? plus shared capture parameters
  • capture_active_window — shared capture parameters
  • capture_cursor_window — include_system_windows? plus shared capture parameters
  • capture_window — snapshot_id, window_id plus shared capture parameters
  • capture_cursor_region — size plus shared capture parameters
  • capture_rect — x, y, width, height plus shared capture parameters

What it needs from you

Configuration is passed through the environment: ZEUXIS_ARTIFACT_HMAC_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Zeuxis.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Zeuxis's toolset — list_monitors, list_windows, get_runtime_diagnostics and 11 more — is a fair guide to whether it matches your workflow. It is maintained by bnomei; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
list_monitorsnone
list_windowsfocused_only?, include_system_windows?, app_contains?, title_contains?
get_runtime_diagnosticsnone
get_latest_capturenone
list_session_artifactsnone
clear_session_artifactsnone
capture_screenmonitor_id? plus shared capture parameters
capture_active_windowshared capture parameters
capture_cursor_windowinclude_system_windows? plus shared capture parameters
capture_windowsnapshot_id, window_id plus shared capture parameters
capture_cursor_regionsize plus shared capture parameters
capture_rectx, y, width, height plus shared capture parameters
capture_monitor_regionmonitor_id, x, y, width, height plus shared capture parameters
delay_msinteger

How to install the Zeuxis MCP server

{
  "mcpServers": {
    "zeuxis": {
      "command": "zeuxis",
      "args": []
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
ZEUXIS_ARTIFACT_HMAC_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Zeuxis to list monitors.
  • Use Zeuxis to list windows.
  • Use Zeuxis to get runtime diagnostics.

Frequently asked questions

It connects Zeuxis to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (list_monitors, list_windows, get_runtime_diagnostics, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Zeuxis directly.