@hypothesi/tauri-plugin-mcp-bridge 0.8.2 → 0.9.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 CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.9.0] - 2026-02-20
11
+
12
+ ### Added
13
+ - Add `element_picker` command module for broadcasting element pick events from the webview via WebSocket
14
+ - Add element picker bridge script for handling `selectElement` and `getPointedElement` messages in the webview
15
+
16
+ ## [0.8.3] - 2026-02-17
17
+
18
+ _No changes to this package._
19
+
10
20
  ## [0.8.2] - 2026-02-10
11
21
 
12
22
  _No changes to this package._
package/README.md CHANGED
@@ -117,13 +117,13 @@ await invoke('plugin:mcp-bridge|emit_event', {
117
117
 
118
118
  ## MCP Server Integration
119
119
 
120
- This plugin is part of the larger MCP Server for Tauri, which provides **18 total MCP tools** for comprehensive Tauri development and testing. The plugin specifically enables the following tools:
120
+ This plugin is part of the larger MCP Server for Tauri, which provides **20 total MCP tools** for comprehensive Tauri development and testing. The plugin specifically enables the following tools:
121
121
 
122
122
  ### Mobile Development Tools (1)
123
123
 
124
124
  1. **list_devices** - List connected Android devices and iOS simulators
125
125
 
126
- ### UI Automation & WebView Tools (12)
126
+ ### UI Automation & WebView Tools (14)
127
127
 
128
128
  Tools for UI automation and webview interaction via the plugin's WebSocket connection:
129
129
 
@@ -138,7 +138,9 @@ Tools for UI automation and webview interaction via the plugin's WebSocket conne
138
138
  9. **webview_get_styles** - Get computed CSS styles for element(s)
139
139
  10. **webview_execute_js** - Execute arbitrary JavaScript code in the webview context
140
140
  11. **webview_dom_snapshot** - Get structured DOM snapshot (accessibility or structure type)
141
- 12. **get_setup_instructions** - Get setup/update instructions for the MCP Bridge plugin
141
+ 12. **webview_select_element** - Visual element picker user clicks an element, returns metadata + screenshot
142
+ 13. **webview_get_pointed_element** - Retrieve metadata for element user Alt+Shift+Clicked
143
+ 14. **get_setup_instructions** - Get setup/update instructions for the MCP Bridge plugin
142
144
 
143
145
  ### IPC Tools (5)
144
146
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypothesi/tauri-plugin-mcp-bridge",
3
- "version": "0.8.2",
3
+ "version": "0.9.0",
4
4
  "description": "JavaScript bindings for @hypothesi/tauri-plugin-mcp-bridge - MCP Bridge plugin for use with Tauri applications",
5
5
  "type": "module",
6
6
  "main": "./dist-js/index.js",