cua-mcp-server 0.1.3__tar.gz → 0.1.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cua-mcp-server might be problematic. Click here for more details.

@@ -1,15 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cua-mcp-server
3
- Version: 0.1.3
3
+ Version: 0.1.8
4
4
  Summary: MCP Server for Computer-Use Agent (CUA)
5
5
  Author-Email: TryCua <gh@trycua.com>
6
- Requires-Python: <3.13,>=3.10
6
+ Requires-Python: >=3.10
7
7
  Requires-Dist: mcp<2.0.0,>=1.6.0
8
- Requires-Dist: torch>=2.2.1
9
- Requires-Dist: cua-agent[openai]<0.2.0,>=0.1.0
10
- Requires-Dist: cua-agent[anthropic]<0.2.0,>=0.1.0
11
- Requires-Dist: cua-agent[omni]<0.2.0,>=0.1.0
12
- Requires-Dist: cua-agent[som]<0.2.0,>=0.1.0
8
+ Requires-Dist: cua-agent[all]<0.2.0,>=0.1.0
13
9
  Requires-Dist: cua-computer<0.2.0,>=0.1.0
14
10
  Description-Content-Type: text/markdown
15
11
 
@@ -48,20 +44,26 @@ This will install:
48
44
 
49
45
  ## Easy Setup Script
50
46
 
51
- If you want to simplify installation, you can use this one-liner to download and run a setup script:
47
+ If you want to simplify installation, you can use this one-liner to download and run the installation script:
52
48
 
53
49
  ```bash
54
- curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/mcp-server/scripts/run_mcp_server.sh | bash
50
+ curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/mcp-server/scripts/install_mcp_server.sh | bash
55
51
  ```
56
52
 
57
- Or use the script directly in your MCP configuration like this:
53
+ This script will:
54
+ - Create the ~/.cua directory if it doesn't exist
55
+ - Generate a startup script at ~/.cua/start_mcp_server.sh
56
+ - Make the script executable
57
+ - The startup script automatically manages Python virtual environments and installs/updates the cua-mcp-server package
58
+
59
+ You can then use the script in your MCP configuration like this:
58
60
 
59
61
  ```json
60
62
  {
61
63
  "mcpServers": {
62
64
  "cua-agent": {
63
65
  "command": "/bin/bash",
64
- "args": ["-c", "curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/mcp-server/scripts/run_mcp_server.sh | bash"],
66
+ "args": ["~/.cua/start_mcp_server.sh"],
65
67
  "env": {
66
68
  "CUA_AGENT_LOOP": "OMNI",
67
69
  "CUA_MODEL_PROVIDER": "ANTHROPIC",
@@ -73,8 +75,6 @@ Or use the script directly in your MCP configuration like this:
73
75
  }
74
76
  ```
75
77
 
76
- This script will automatically check if cua-mcp-server is installed, install it if needed, and run it.
77
-
78
78
  ## Claude Desktop Integration
79
79
 
80
80
  To use with Claude Desktop, add an entry to your Claude Desktop configuration (`claude_desktop_config.json`, typically found in `~/.config/claude-desktop/`):
@@ -33,20 +33,26 @@ This will install:
33
33
 
34
34
  ## Easy Setup Script
35
35
 
36
- If you want to simplify installation, you can use this one-liner to download and run a setup script:
36
+ If you want to simplify installation, you can use this one-liner to download and run the installation script:
37
37
 
38
38
  ```bash
39
- curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/mcp-server/scripts/run_mcp_server.sh | bash
39
+ curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/mcp-server/scripts/install_mcp_server.sh | bash
40
40
  ```
41
41
 
42
- Or use the script directly in your MCP configuration like this:
42
+ This script will:
43
+ - Create the ~/.cua directory if it doesn't exist
44
+ - Generate a startup script at ~/.cua/start_mcp_server.sh
45
+ - Make the script executable
46
+ - The startup script automatically manages Python virtual environments and installs/updates the cua-mcp-server package
47
+
48
+ You can then use the script in your MCP configuration like this:
43
49
 
44
50
  ```json
45
51
  {
46
52
  "mcpServers": {
47
53
  "cua-agent": {
48
54
  "command": "/bin/bash",
49
- "args": ["-c", "curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/mcp-server/scripts/run_mcp_server.sh | bash"],
55
+ "args": ["~/.cua/start_mcp_server.sh"],
50
56
  "env": {
51
57
  "CUA_AGENT_LOOP": "OMNI",
52
58
  "CUA_MODEL_PROVIDER": "ANTHROPIC",
@@ -58,8 +64,6 @@ Or use the script directly in your MCP configuration like this:
58
64
  }
59
65
  ```
60
66
 
61
- This script will automatically check if cua-mcp-server is installed, install it if needed, and run it.
62
-
63
67
  ## Claude Desktop Integration
64
68
 
65
69
  To use with Claude Desktop, add an entry to your Claude Desktop configuration (`claude_desktop_config.json`, typically found in `~/.config/claude-desktop/`):
@@ -8,18 +8,14 @@ build-backend = "pdm.backend"
8
8
  name = "cua-mcp-server"
9
9
  description = "MCP Server for Computer-Use Agent (CUA)"
10
10
  readme = "README.md"
11
- requires-python = ">=3.10,<3.13"
12
- version = "0.1.3"
11
+ requires-python = ">=3.10"
12
+ version = "0.1.8"
13
13
  authors = [
14
14
  { name = "TryCua", email = "gh@trycua.com" },
15
15
  ]
16
16
  dependencies = [
17
17
  "mcp>=1.6.0,<2.0.0",
18
- "torch>=2.2.1",
19
- "cua-agent[openai]>=0.1.0,<0.2.0",
20
- "cua-agent[anthropic]>=0.1.0,<0.2.0",
21
- "cua-agent[omni]>=0.1.0,<0.2.0",
22
- "cua-agent[som]>=0.1.0,<0.2.0",
18
+ "cua-agent[all]>=0.1.0,<0.2.0",
23
19
  "cua-computer>=0.1.0,<0.2.0",
24
20
  ]
25
21
 
@@ -43,7 +39,7 @@ target-version = [
43
39
 
44
40
  [tool.ruff]
45
41
  line-length = 100
46
- target-version = "0.1.3"
42
+ target-version = "0.1.8"
47
43
  select = [
48
44
  "E",
49
45
  "F",