open-compute-mcp 0.1.0-alpha.1 → 0.1.0-alpha.2

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 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.2] — 2026-07-05
9
+
10
+ ### Changed
11
+
12
+ - Registry namespace set to `io.github.lukisch/open-compute-mcp` (personal
13
+ namespace, matching the existing registry entries) so the server publishes to
14
+ the official MCP registry without requiring a public GitHub org membership.
15
+ The `mcpName` in package.json is updated to match.
16
+
8
17
  ## [0.1.0-alpha.1] — 2026-07-05
9
18
 
10
19
  ### Added
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ <p align="center">
2
+ <img src="assets/banner.svg" alt="open-compute-mcp banner" width="760">
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="assets/banner.svg" alt="open-compute-mcp Banner" width="760">
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.1",
4
- "mcpName": "io.github.ellmos-ai/open-compute-mcp",
3
+ "version": "0.1.0-alpha.2",
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.ellmos-ai/open-compute-mcp",
4
- "version": "0.1.0-alpha.1",
3
+ "name": "io.github.lukisch/open-compute-mcp",
4
+ "version": "0.1.0-alpha.2",
5
5
  "title": "open-compute (computer-use)",
6
- "description": "Model-agnostic computer-use MCP: screenshot capture, canonical safety-gated actions, and Windows UIA element targeting. npm launcher for the Python open-compute server.",
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.1",
17
+ "version": "0.1.0-alpha.2",
18
18
  "transport": { "type": "stdio" },
19
19
  "runtimeHint": "npx"
20
20
  }