open-compute-mcp 0.1.0-alpha.3 → 0.1.0-alpha.4
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.
- package/CHANGELOG.md +9 -0
- package/README.md +7 -0
- package/README_de.md +7 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to this package are documented here.
|
|
|
5
5
|
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and the
|
|
6
6
|
project adheres to [Semantic Versioning](https://semver.org/).
|
|
7
7
|
|
|
8
|
+
## [0.1.0-alpha.4] — 2026-07-06
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- README header: added npm version/downloads, license and Node badges plus a
|
|
13
|
+
"View on npm" link (EN + DE).
|
|
14
|
+
- Banner reworked to a wider 16:3 band (edge-to-edge, less vertical padding) so it
|
|
15
|
+
fills the README column.
|
|
16
|
+
|
|
8
17
|
## [0.1.0-alpha.3] — 2026-07-05
|
|
9
18
|
|
|
10
19
|
### Changed
|
package/README.md
CHANGED
|
@@ -9,6 +9,13 @@ model-agnostic **computer-use** tools exposed over the Model Context Protocol (M
|
|
|
9
9
|
|
|
10
10
|
**EN** | [DE](README_de.md)
|
|
11
11
|
|
|
12
|
+
[](https://www.npmjs.com/package/open-compute-mcp)
|
|
13
|
+
[](https://www.npmjs.com/package/open-compute-mcp)
|
|
14
|
+
[](https://opensource.org/licenses/MIT)
|
|
15
|
+
[](https://nodejs.org/)
|
|
16
|
+
|
|
17
|
+
📦 **[View on npm →](https://www.npmjs.com/package/open-compute-mcp)**
|
|
18
|
+
|
|
12
19
|
The MCP **client is the reasoner** (no API key, model-agnostic): it calls `capture`
|
|
13
20
|
to see the screen, then acts with `do` / `click_name` / `invoke`. This is the keyless
|
|
14
21
|
Mode-A loop of open-compute, but as native tool-calls.
|
package/README_de.md
CHANGED
|
@@ -9,6 +9,13 @@ modellagnostische **Computer-Use**-Tools über das Model Context Protocol (MCP).
|
|
|
9
9
|
|
|
10
10
|
**EN** ([README.md](README.md)) | **DE**
|
|
11
11
|
|
|
12
|
+
[](https://www.npmjs.com/package/open-compute-mcp)
|
|
13
|
+
[](https://www.npmjs.com/package/open-compute-mcp)
|
|
14
|
+
[](https://opensource.org/licenses/MIT)
|
|
15
|
+
[](https://nodejs.org/)
|
|
16
|
+
|
|
17
|
+
📦 **[Auf npm ansehen →](https://www.npmjs.com/package/open-compute-mcp)**
|
|
18
|
+
|
|
12
19
|
Der MCP-**Client ist der Reasoner** (kein API-Key, modellagnostisch): Er ruft `capture`
|
|
13
20
|
auf, um den Bildschirm zu sehen, und handelt dann mit `do` / `click_name` / `invoke`.
|
|
14
21
|
Das ist die schlüssellose Modus-A-Schleife von open-compute, aber als native Tool-Calls.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-compute-mcp",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.4",
|
|
4
4
|
"mcpName": "io.github.lukisch/open-compute-mcp",
|
|
5
5
|
"description": "npm launcher for the open-compute MCP server: model-agnostic computer-use tools (screenshot capture, canonical safety-gated actions, Windows UIA element targeting) over MCP stdio. Spawns the Python open-compute server (from GitHub).",
|
|
6
6
|
"type": "commonjs",
|
package/server.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.lukisch/open-compute-mcp",
|
|
4
|
-
"version": "0.1.0-alpha.
|
|
4
|
+
"version": "0.1.0-alpha.4",
|
|
5
5
|
"title": "open-compute (computer-use)",
|
|
6
6
|
"description": "Model-agnostic computer-use MCP: screenshot, safety-gated actions, Windows UIA targeting.",
|
|
7
7
|
"websiteUrl": "https://github.com/ellmos-ai/open-compute-mcp",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{
|
|
15
15
|
"registryType": "npm",
|
|
16
16
|
"identifier": "open-compute-mcp",
|
|
17
|
-
"version": "0.1.0-alpha.
|
|
17
|
+
"version": "0.1.0-alpha.4",
|
|
18
18
|
"transport": { "type": "stdio" },
|
|
19
19
|
"runtimeHint": "npx"
|
|
20
20
|
}
|