@hypothesi/tauri-plugin-mcp-bridge 0.3.1 → 0.5.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/CHANGELOG.md +11 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.5.0] - 2025-12-21
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Add `resize_window` command for resizing windows to specified dimensions
|
|
14
|
+
- Add `get_window_info` WebSocket command for detailed window information
|
|
15
|
+
- Add app identifier to backend state for session verification
|
|
16
|
+
|
|
17
|
+
## [0.4.0] - 2025-12-05
|
|
18
|
+
|
|
19
|
+
_No changes to this package._
|
|
20
|
+
|
|
10
21
|
## [0.3.1] - 2025-12-02
|
|
11
22
|
|
|
12
23
|
_No changes to this package._
|
package/README.md
CHANGED
|
@@ -128,7 +128,7 @@ This plugin is part of the larger MCP Server for Tauri, which provides **16 tota
|
|
|
128
128
|
Tools for UI automation and webview interaction via the plugin's WebSocket connection:
|
|
129
129
|
|
|
130
130
|
1. **tauri_driver_session** - Manage automation session (start, stop, or status)
|
|
131
|
-
2. **
|
|
131
|
+
2. **tauri_manage_window** - List windows, get window info, or resize windows
|
|
132
132
|
3. **tauri_webview_find_element** - Find an element in the webview
|
|
133
133
|
4. **tauri_read_logs** - Read logs (console, Android logcat, iOS, system)
|
|
134
134
|
5. **tauri_webview_interact** - Perform gestures (click, double-click, long-press, swipe, scroll, focus)
|
package/package.json
CHANGED