@extentos/mcp-server 0.11.0 → 0.11.1

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.
@@ -48,10 +48,10 @@ final class ExtentosBootstrap: ObservableObject {
48
48
  private static let log = Logger(subsystem: "${appPackage}", category: "Extentos")
49
49
 
50
50
  private init() {
51
- // debug=true gates the auto-bind probe path on Android (rule 4 of
52
- // TransportChoice.Auto). iOS auto-bind isn't built yet, but wiring
53
- // debug from the build configuration here means this template doesn't
54
- // need to change when iOS auto-bind ships.
51
+ // debug=true gates the auto-bind probe path on both platforms (rule 4
52
+ // of TransportChoice.Auto) — on iOS the library probes the MCP
53
+ // server's localhost bridge (whoami) on debug builds and binds the
54
+ // simulator session automatically when one is live.
55
55
  #if DEBUG
56
56
  let isDebugBuild = true
57
57
  #else
@@ -83,7 +83,7 @@ export function renderIosAppPatchHint(appPackage) {
83
83
  Task { _ = await ExtentosBootstrap.shared.glasses.handleUrl(url) }
84
84
  }
85
85
  .onChange(of: scenePhase) { newPhase in
86
- // Single-parameter form — compatible with the SDK floor (iOS 15.2);
86
+ // Single-parameter form — compatible with the SDK floor (iOS 16.0);
87
87
  // the two-parameter overload requires iOS 17.
88
88
  ExtentosBootstrap.shared.sceneObserver.scenePhaseChanged(to: newPhase)
89
89
  }`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extentos/mcp-server",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "mcpName": "com.extentos/mcp-server",
5
5
  "description": "Extentos MCP server — deterministic tools for building smart-glasses apps with AI agents.",
6
6
  "type": "module",