Skip to main content
Zeus exposes its Desktop automation capabilities through the Model Context Protocol (MCP), allowing external AI tools like Cursor, Claude Desktop, and other MCP clients to directly leverage Zeus’s powerful desktop automation features.

Endpoint

Zeus provides a Streamable HTTP MCP server that external clients can connect to.

Configuration

Cursor / Claude Desktop

Add the following to your MCP client configuration:

Debug Mode

For local development, enable debug auth by setting MCP_DEBUG_AUTH=true:

Available Tools

Once connected, external MCP clients can use these tools:

desktop_exec

Execute shell commands on the user’s local machine.
Use cases:
  • File operations: ls, cat, mkdir, mv, cp, rm, find, grep
  • Version control: git status, git add, git commit, git push
  • Package management: npm install, pip install, brew install
  • Programming: python, node, etc.

browser_read

Silently extract data from browser pages.
Actions:
  • text - Get page or element text content
  • table - Extract table data (returns 2D array)
  • form - Get form field values (key-value pairs)
  • screenshot - Page screenshot (base64 PNG)
  • html - Get HTML source
  • url - Get current page URL

hitl_prompt

Request input from the end user (for verification codes, confirmations, etc.).
Use cases:
  • SMS/email verification codes
  • User confirmation dialogs
  • Dynamic information requests

list_workflows

List all published workflow tools on the Desktop.
Returns JSON array with each workflow’s:
  • name - Tool name (prefixed with workflow_)
  • description - Tool description
  • inputSchema - Input parameters JSON Schema

execute_workflow

Execute a published workflow tool.

check_desktop_status

Check if the Desktop App is connected.
Returns connection status:

Authentication

The MCP Gateway supports two authentication methods:
JWT tokens are issued by Better Auth and validated using JWKS with 1-hour cache.

Architecture

Example: Using Zeus in Cursor

  1. Generate an API token from Zeus Web UI
  2. Configure Cursor’s MCP settings
  3. In Cursor, ask Claude to:
Claude will use the Zeus MCP tools to execute these commands on your machine.