loading…
Search for a command to run...
loading…
A Tauri plugin that enables AI agents to interact with Tauri applications through screenshots, DOM inspection, and input simulation via the Model Context Protoc
A Tauri plugin that enables AI agents to interact with Tauri applications through screenshots, DOM inspection, and input simulation via the Model Context Protocol. It allows agents to perform actions like clicking, typing, and executing JavaScript within the application's webview context.
A Tauri plugin that lets AI agents (Claude Code, Cursor, etc.) interact with your Tauri app through screenshots, DOM inspection, and input simulation using the Model Context Protocol (MCP).
# Cargo.toml
[dependencies]
tauri-plugin-mcp = { git = "https://github.com/DonsWayo/tauri-mcp", optional = true }
Register the plugin in your Tauri app:
// src-tauri/src/lib.rs
#[cfg(feature = "mcp-e2e")]
app.plugin(tauri_plugin_mcp::init())?;
The plugin opens a Unix domain socket at /tmp/<app-name>-mcp.sock that MCP clients connect to.
The plugin uses screencapture -l <CGWindowID> instead of xcap. This means:
xcap::Window::all() triggered by certain system windows on recent macOS versionsUses xcap for X11 window capture with multi-pass window matching by app name and title.
Add to .mcp.json:
{
"mcpServers": {
"nucel-e2e": {
"type": "stdio",
"command": "node",
"args": ["path/to/mcp-server/build/index.js", "/tmp/your-app-mcp.sock"]
}
}
}
This project started as a fork of P3GLEG/tauri-plugin-mcp and has since diverged significantly.
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"tauri-mcp": {
"command": "npx",
"args": []
}
}
}