tauri-plugin-mcp-gui 0.1.0

A Tauri plugin that enables AI agents to interact with desktop GUIs through screenshots, DOM access, and input simulation utilizing MCP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const COMMANDS: &[&str] = &[
    "click_element",
    "control_window",
    "eval_js",
    "get_element_text",
    "get_html",
    "get_title",
    "get_url",
    "list_windows",
    "ping",
    "set_element_value",
    "take_screenshot",
    "type_text"
];

fn main() {
    tauri_plugin::Builder::new(COMMANDS).build();
}