open-compute-mcp 0.1.0-alpha.1 → 0.1.0-alpha.3
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 +17 -0
- package/README.md +4 -0
- package/README_de.md +4 -0
- package/package.json +2 -2
- package/server.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,23 @@ 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.3] — 2026-07-05
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- README banner: now a rendered PNG served via an absolute raw-GitHub URL at full
|
|
13
|
+
width — it fills the GitHub README column and renders on the npm package page
|
|
14
|
+
(npm shows neither SVG nor relative image paths). The SVG source stays in `assets/`.
|
|
15
|
+
|
|
16
|
+
## [0.1.0-alpha.2] — 2026-07-05
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Registry namespace set to `io.github.lukisch/open-compute-mcp` (personal
|
|
21
|
+
namespace, matching the existing registry entries) so the server publishes to
|
|
22
|
+
the official MCP registry without requiring a public GitHub org membership.
|
|
23
|
+
The `mcpName` in package.json is updated to match.
|
|
24
|
+
|
|
8
25
|
## [0.1.0-alpha.1] — 2026-07-05
|
|
9
26
|
|
|
10
27
|
### Added
|
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/ellmos-ai/open-compute-mcp/main/assets/banner.png" alt="open-compute-mcp banner" width="100%">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# open-compute-mcp
|
|
2
6
|
|
|
3
7
|
**npm launcher for the [open-compute](https://github.com/ellmos-ai/open-compute) MCP server** —
|
package/README_de.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/ellmos-ai/open-compute-mcp/main/assets/banner.png" alt="open-compute-mcp Banner" width="100%">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# open-compute-mcp
|
|
2
6
|
|
|
3
7
|
**npm-Launcher für den [open-compute](https://github.com/ellmos-ai/open-compute) MCP-Server** —
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-compute-mcp",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
4
|
-
"mcpName": "io.github.
|
|
3
|
+
"version": "0.1.0-alpha.3",
|
|
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",
|
|
7
7
|
"bin": {
|
package/server.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
-
"name": "io.github.
|
|
4
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"name": "io.github.lukisch/open-compute-mcp",
|
|
4
|
+
"version": "0.1.0-alpha.3",
|
|
5
5
|
"title": "open-compute (computer-use)",
|
|
6
|
-
"description": "Model-agnostic computer-use MCP: screenshot
|
|
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",
|
|
8
8
|
"repository": {
|
|
9
9
|
"url": "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.3",
|
|
18
18
|
"transport": { "type": "stdio" },
|
|
19
19
|
"runtimeHint": "npx"
|
|
20
20
|
}
|