@beeos-ai/device-mcp-server 0.2.3 → 0.3.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beeos-ai/device-mcp-server",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "In-pod HTTP MCP tool server for BeeOS device-agent (Android / desktop / mobile sandboxes).",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -38,7 +38,7 @@
38
38
  "pino": "^10.3.1",
39
39
  "sharp": "^0.34.5",
40
40
  "zod": "^4.3.6",
41
- "@beeos-ai/device-common": "0.2.1"
41
+ "@beeos-ai/device-common": "0.3.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/node": "^22.0.0",
@@ -1,13 +0,0 @@
1
- /**
2
- * MacOsBackend — stub backend reserved for native macOS automation (Accessibility
3
- * API / `osascript`). All verbs throw `DeviceError("unsupported")` until the
4
- * concrete implementation lands.
5
- */
6
- import type { DeviceInfo } from "@beeos-ai/device-common";
7
- import { BaseSandboxBackend, type BackendFamily, type ScreenSize } from "../base.js";
8
- export declare class MacOsBackend extends BaseSandboxBackend {
9
- readonly family: BackendFamily;
10
- info(): Promise<DeviceInfo>;
11
- screenshot(): Promise<Buffer>;
12
- screenSize(): Promise<ScreenSize>;
13
- }
@@ -1,27 +0,0 @@
1
- /**
2
- * MacOsBackend — stub backend reserved for native macOS automation (Accessibility
3
- * API / `osascript`). All verbs throw `DeviceError("unsupported")` until the
4
- * concrete implementation lands.
5
- */
6
- import { BaseSandboxBackend } from "../base.js";
7
- export class MacOsBackend extends BaseSandboxBackend {
8
- family = "desktop-macos";
9
- async info() {
10
- return {
11
- type: this.family,
12
- name: "macOS (stub)",
13
- os: "macOS",
14
- width: 2560,
15
- height: 1440,
16
- capabilities: [],
17
- metadata: { stub: "true" },
18
- };
19
- }
20
- screenshot() {
21
- return this.unsupported("screenshot");
22
- }
23
- async screenSize() {
24
- return { w: 2560, h: 1440 };
25
- }
26
- }
27
- //# sourceMappingURL=macos.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"macos.js","sourceRoot":"","sources":["../../../src/backends/stubs/macos.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,EAAE,kBAAkB,EAAuC,MAAM,YAAY,CAAC;AAErF,MAAM,OAAO,YAAa,SAAQ,kBAAkB;IACzC,MAAM,GAAkB,eAAe,CAAC;IAEjD,KAAK,CAAC,IAAI;QACR,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,MAAM;YACjB,IAAI,EAAE,cAAc;YACpB,EAAE,EAAE,OAAO;YACX,KAAK,EAAE,IAAI;YACX,MAAM,EAAE,IAAI;YACZ,YAAY,EAAE,EAAE;YAChB,QAAQ,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;SAC3B,CAAC;IACJ,CAAC;IAED,UAAU;QACR,OAAO,IAAI,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC;IACxC,CAAC;IAED,KAAK,CAAC,UAAU;QACd,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC;IAC9B,CAAC;CACF"}