Skip to content

Releases: trycua/cua

cua-computer v0.1.22

15 Apr 18:47
8a0dc7b

Choose a tag to compare

cua-computer v0.1.22

Computer control library for the Computer Universal Automation (CUA) project

Dependencies

  • pylume: latest

Installation

pip install cua-computer==0.1.22

cua-computer-server v0.1.3

15 Apr 18:45
8a0dc7b

Choose a tag to compare

cua-computer-server v0.1.3

Computer Server for the Computer Universal Automation (CUA) project

A FastAPI-based server implementation for computer control.

Dependencies

  • cua-computer: latest

Usage

# Run the server
cua-computer-server

Installation

pip install cua-computer-server==0.1.3

cua-agent v0.1.28

15 Apr 22:46

Choose a tag to compare

cua-agent v0.1.28

Dependencies

  • cua-computer: latest
  • cua-som: latest

Installation Options

Basic installation with Anthropic

pip install cua-agent[anthropic]==0.1.28

With SOM (recommended)

pip install cua-agent[som]==0.1.28

All features

pip install cua-agent[all]==0.1.28

cua-agent v0.1.27

15 Apr 18:54
8a0dc7b

Choose a tag to compare

cua-agent v0.1.27

Dependencies

  • cua-computer: latest
  • cua-som: latest

Installation Options

Basic installation with Anthropic

pip install cua-agent[anthropic]==0.1.27

With SOM (recommended)

pip install cua-agent[som]==0.1.27

All features

pip install cua-agent[all]==0.1.27

lume-v0.1.34

14 Apr 06:17
bcfff60

Choose a tag to compare

ed2279f9a0de83852d12127d0431e742a406fbcd0eb63041bd4c4b004b8d0890 lume-0.1.34-darwin-arm64.pkg.tar.gz
95891f3373323a37aa76be66a2e01e13189c2c76d11debb9492c091e0de4951f lume-0.1.34-darwin-arm64.tar.gz

Installation with script

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/lume/scripts/install.sh)"



## What's Changed
* [Lume] Add multiple VM locations and configurable cache by @f-trycua in https://github.com/trycua/cua/pull/91


**Full Changelog**: https://github.com/trycua/cua/compare/agent-v0.1.26...lume-v0.1.34

lume-v0.1.33

14 Apr 05:50

Choose a tag to compare

7be37962b10dc9c7392ecd1c0a1a31b7dffc79bebbddf87bd50a77146c971387 lume-0.1.33-darwin-arm64.pkg.tar.gz
49cbcad50c7d0e1b0ca217c3a931b4c113e2a940c61ff3cd96d93c7c47acefee lume-0.1.33-darwin-arm64.tar.gz

Installation with script

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/lume/scripts/install.sh)"



## What's Changed
* [Agent] Improved Gradio UI by @ddupont808 in https://github.com/trycua/cua/pull/104


**Full Changelog**: https://github.com/trycua/cua/compare/lume-v0.1.32...lume-v0.1.33

cua-agent v0.1.26

14 Apr 05:49

Choose a tag to compare

cua-agent v0.1.26

Dependencies

  • cua-computer: latest
  • cua-som: latest

Installation Options

Basic installation with Anthropic

pip install cua-agent[anthropic]==0.1.26

With SOM (recommended)

pip install cua-agent[som]==0.1.26

All features

pip install cua-agent[all]==0.1.26

lume-v0.1.32

12 Apr 18:39
e211ea7

Choose a tag to compare

1f72a973af1ce9338d9bb84ab28caef4201d7120772bd86b558dab299be7f8ad lume-0.1.32-darwin-arm64.pkg.tar.gz
4705587d1283711a2eb50dde78d4947d978abd2f7a4fe81516693443b7cd21d9 lume-0.1.32-darwin-arm64.tar.gz

Installation with script

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/lume/scripts/install.sh)"



## What's Changed
* [Lume] Optimize VM image assembly by @f-trycua in https://github.com/trycua/cua/pull/102


**Full Changelog**: https://github.com/trycua/cua/compare/lume-v0.1.31...lume-v0.1.32

lume-v0.1.31

11 Apr 07:39
daa6a90

Choose a tag to compare

67a56949ed2e1d8ebbe634ab333ea2a501b9604c25998b53fa025255fea1ef56 lume-0.1.31-darwin-arm64.pkg.tar.gz
30568d8921a49ca044046fbe698a938e897595ea23b2ca1d1b1076be199e9c34 lume-0.1.31-darwin-arm64.tar.gz

Installation with script

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/lume/scripts/install.sh)"



## What's Changed
* [Agent] Fix leftover Gradio docs by @f-trycua in https://github.com/trycua/cua/pull/97
* docs: add RicterZ as a contributor for code by @allcontributors in https://github.com/trycua/cua/pull/98
* [Lume] Fix reassemble kill by @f-trycua in https://github.com/trycua/cua/pull/99


**Full Changelog**: https://github.com/trycua/cua/compare/lume-v0.1.30...lume-v0.1.31

cua-mcp-server v0.1.3

07 Apr 02:36

Choose a tag to compare

cua-mcp-server v0.1.3

MCP Server for the Computer-Use Agent (CUA)

This package provides MCP (Model Context Protocol) integration for CUA agents, allowing them to be used with Claude Desktop, Cursor, and other MCP clients.

Dependencies

  • cua-computer: latest
  • cua-agent: latest

Usage

# Run the MCP server directly
cua-mcp-server

Claude Desktop Integration

Add to your Claude Desktop configuration (~/.config/claude-desktop/claude_desktop_config.json or OS-specific location):

"mcpServers": {
  "cua-agent": {
    "command": "cua-mcp-server",
    "args": [],
    "env": {
      "CUA_AGENT_LOOP": "OMNI",
      "CUA_MODEL_PROVIDER": "ANTHROPIC",
      "CUA_MODEL_NAME": "claude-3-opus-20240229",
      "ANTHROPIC_API_KEY": "your-api-key",
      "PYTHONIOENCODING": "utf-8"
    }
  }
}

Installation

pip install cua-mcp-server==0.1.3