Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.Hushlor/mcp-server-tauri

NPM · @HUSHLOR/TAURI-MCP-SERVER · SCANNED AUG 3

A Model Context Protocol server for use with Tauri v2 applications

46 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security88
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (120 of 124), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (120 of 124), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency97
  • Source repository is publicly reachable at the declared URL. View diagnostics → Pass
  • Cryptographically verified build provenance (signed, bound to Hushlor/mcp-server-tauri). View diagnostics → Pass
  • Clear OSI-approved license (MIT).Pass
  • Actively maintained (last published 0 days ago).Pass
  • Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability0
  • Schema quality not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.Unverified
Stability & Change Management0
  • Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.Unverified
Tool Coverage0
  • Tool coverage not yet verified: we do not have a sandbox capture of the tool definitions this version of the package serves yet.Unverified
Capabilities0
  • Protocol version not yet verified: we do not have a sandbox capture of the MCP handshake this version of the package performs yet.Unverified

Unverified: 4 categories

Categories scored 0 because our sandbox run of this package has not given us the schema these checks need to read. That is a gap on our side rather than a finding about the package, and we only credit what we can confirm, so the score stands at 0 until the capture succeeds. We are working through the fleet, so this normally clears without any action from you. How we score packages →

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @hushlor/tauri-mcp-server

# add to Claude Code
claude mcp add hushlor-mcp-server-tauri -- npx -y @hushlor/tauri-mcp-server
# add to Codex CLI
codex mcp add hushlor-mcp-server-tauri -- npx -y @hushlor/tauri-mcp-server
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "hushlor-mcp-server-tauri": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@hushlor/tauri-mcp-server"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add hushlor-mcp-server-tauri --command npx --arg -y --arg @hushlor/tauri-mcp-server
# ~/.hermes/config.yaml
mcp_servers:
  hushlor-mcp-server-tauri:
    command: "npx"
    args: ["-y", "@hushlor/tauri-mcp-server"]
// mcp.json
{
  "mcpServers": {
    "hushlor-mcp-server-tauri": {
      "command": "npx",
      "args": [
        "-y",
        "@hushlor/tauri-mcp-server"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@hushlor/[email protected]

Provenance verified

Ecosystem: npm · Outcome: verified

Reason: verified

Source repo:
Hushlor/mcp-server-tauri
Certificate issuer:
https://token.actions.githubusercontent.com
Certificate SAN:
https://github.com/Hushlor/mcp-server-tauri/.github/workflows/release.yml@refs/tags/v0.14.0
Rekor log index:
2335109778
Predicate type:
https://slsa.dev/provenance/v1
Subject digest:
sha512:01f4c4a8e97da682aff50fcc31ba30de5a4217c89c299055b7ce757428bf262cae999af0cc03853b9b5866499d5373f24e2621caaeeddad893a7e8717
Discovery method:
attestation_endpoint
Dependencies 120 packages

120 packages in the resolved dependency tree · 112 deprecated · 42 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 22 exposed · ~4,474 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
driver_session ~293

[Tauri Apps Only] Start/stop automation session to connect to a RUNNING Tauri app. Supports multiple concurrent app connections - each app runs on a unique port. The most recently connected app becomes the "default" app used when no appIdentifier is specified. Use action "status" to check connection state: returns single app format when 1 app connected, or array format with "isDefault" indicator when multiple apps connected. Action "stop" without appIdentifier stops ALL sessions; with appIdentifier stops only that app. The identifier field (e.g., "com.example.myapp") uniquely identifies each app. REQUIRED before using other webview_* or ipc_* tools. Connects via WebSocket to the MCP Bridge plugin in the Tauri app. For browser automation, use Chrome DevTools MCP instead. For Electron apps, this tool will NOT work.

NameTypeReqDescription
actionstringyesAction to perform: start or stop the session, or check status
appIdentifierstring|numberApp identifier (port number or bundle ID) to stop. Only used with action "stop". If omitted, stops all sessions.
hoststringHost address to connect to (e.g., 192.168.1.100). Falls back to MCP_BRIDGE_HOST or TAURI_DEV_HOST env vars
portnumberPort to connect to (default: 9223)

No output schema declared.

No examples provided.

get_setup_instructions ~101

Get instructions for setting up or updating the MCP Bridge plugin in a Tauri project. Call this tool when: (1) driver_session fails to connect, (2) you detect the plugin is not installed or outdated, or (3) the user asks about setup. Returns step-by-step guidance that you should follow to help the user configure their project. IMPORTANT: The instructions require you to examine the project first and ask for permission before making any changes.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

ipc_emit_event ~97

[Tauri Apps Only] Emit a Tauri event to test event handlers. Requires active driver_session. Events are Tauri-specific (not DOM events). For browser DOM events, use Chrome DevTools MCP instead.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
eventNamestringyes
payload

No output schema declared.

No examples provided.

ipc_execute_command ~100

[Tauri Apps Only] Execute Tauri IPC commands (invoke Rust backend functions). Requires active driver_session. This is Tauri-specific IPC, not browser APIs. For Electron IPC or browser APIs, use appropriate tools for those frameworks.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
args
commandstringyes

No output schema declared.

No examples provided.

ipc_get_backend_state ~83

[Tauri Apps Only] Get Tauri backend state: app metadata, Tauri version, environment. Requires active driver_session. Use to verify you're connected to a Tauri app and get app info.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.

No output schema declared.

No examples provided.

ipc_get_captured ~98

[Tauri Apps Only] Get captured Tauri IPC traffic (requires ipc_monitor started). Shows captured commands (invoke calls) and events with arguments and responses. For browser network requests, use Chrome DevTools MCP instead.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
filterstringFilter events by command name

No output schema declared.

No examples provided.

ipc_monitor ~103

[Tauri Apps Only] Monitor Tauri IPC calls between frontend and Rust backend. Requires active driver_session. Captures invoke() calls and responses. This is Tauri-specific; for browser network monitoring, use Chrome DevTools MCP.

NameTypeReqDescription
actionstringyesAction to perform: start or stop IPC monitoring
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.

No output schema declared.

No examples provided.

list_devices ~56

[Tauri Mobile Apps Only] List Android emulators/devices and iOS simulators. Use for Tauri mobile development (tauri android dev, tauri ios dev). Not needed for desktop-only Tauri apps or web projects.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

manage_window ~241

[Tauri Apps Only] Manage Tauri windows. Actions: "list" - List all windows with labels, titles, URLs, and state. "info" - Get detailed info for a window (size, position, title, focus, visibility). "resize" - Resize a window (requires width/height, uses logical pixels by default). Requires active driver_session. For browser windows, use Chrome DevTools MCP instead.

NameTypeReqDescription
actionstringyesAction: "list" all windows, get "info" for one window, or "resize" a window
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
heightintegerHeight in pixels (required for "resize" action)
logicalbooleanUse logical pixels (true, default) or physical pixels (false). Only for "resize"
widthintegerWidth in pixels (required for "resize" action)
windowIdstringWindow label to target (defaults to "main"). Required for "info", optional for "resize"

No output schema declared.

No examples provided.

native_dialog_interact ~151

[Windows Tauri Apps Only] Interact with an elementRef from the latest native_dialog_snapshot using UI Automation InvokePattern, ValuePattern, or SelectionItemPattern. Use invoke for dialog buttons, setValue with a complete absolute file or folder path, setPaths with complete absolute existing file paths for multi-select Open dialogs, and select for advertised navigation or file-system controls. References are session-bound, expire after 30 seconds, and are otherwise ephemeral; take a new snapshot after a stale-reference error. Requires an active driver_session and an interactive Windows desktop. Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

native_dialog_snapshot ~246

[Windows Tauri Apps Only] Discover native message, confirmation, Open, or Save dialogs in the ownership chain of a targeted Tauri window. Returns a bounded semantic UI Automation snapshot with ownership depth, navigation and file-system controls, automation IDs, semantic roles, supported patterns, and ephemeral elementRef values. Set minOwnerDepth to 2 to wait for a child confirmation such as Save overwrite. Requires an active driver_session and an interactive Windows desktop. Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app. Native dialogs are outside the webview DOM; Windows toast notifications are not supported.

NameTypeReqDescription
appIdentifierstring|numberApp identifier (port or bundle ID) when multiple Tauri apps are connected
minOwnerDepthintegerMinimum owner-chain depth to return: 1 for direct dialogs, 2 for confirmations owned by another dialog
timeoutMsintegerBounded time to wait for the native operation, from 100 to 10000 milliseconds
windowIdstringTauri window label whose owned native dialog chain should be targeted

No output schema declared.

No examples provided.

read_logs ~208

[Tauri Apps Only] Read logs from various sources: "console" for webview JS logs, "android" for logcat, "ios" for simulator logs, "system" for desktop logs. Requires active driver_session for console logs. Use for debugging Tauri app issues at any level.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID for console logs. Defaults to the only connected app or the default app if multiple are connected.
filterstringRegex or keyword to filter logs
linesinteger
sincestringISO timestamp to filter logs since (e.g. 2023-10-27T10:00:00Z)
sourcestringyesLog source: "console" for webview JS logs, "android" for logcat, "ios" for simulator, "system" for desktop
windowIdstringWindow label for console logs (defaults to "main")

No output schema declared.

No examples provided.

webview_dom_snapshot ~357

[Tauri Apps Only] Get a structured DOM snapshot of a Tauri app's webview. Supports different snapshot types for AI consumption. The "accessibility" type returns a YAML representation of the accessibility tree similar to Playwright's aria snapshots, including roles, names, states, and element refs. Use this for understanding UI semantics, finding interactive elements, or accessibility testing. The "structure" type returns a YAML representation of the DOM hierarchy with element tag names, IDs, CSS classes, and data-testid attributes (if present). Use this for understanding page layout, debugging CSS selectors, or locating elements by class/ID. Use the optional selector parameter to scope the snapshot to a subtree. The selector supports CSS (default), XPath, and text content matching via the strategy parameter. Requires active driver_session. Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
selectorstringSelector to scope the snapshot: CSS selector (default), XPath, text content, or ref ID. If omitted, snapshots entire document.
strategystringSelector strategy: "css" (default) for CSS selectors, "xpath" for XPath expressions, "text" to find elements by text content, with fallback to placeholder, aria-label, and title attributes. Ref IDs (…
typestringyesSnapshot type
windowIdstringWindow label to target (defaults to "main")

No output schema declared.

No examples provided.

webview_execute_js ~251

[Tauri Apps Only] Execute JavaScript in a Tauri app's webview context. Requires active driver_session. Has access to window.__TAURI__. If you need a return value, it must be JSON-serializable. For functions that return values, use an IIFE: "(() => { return 5; })()" not "() => { return 5; }". Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app. For browser JS execution, use Chrome DevTools MCP instead.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
argsarrayArguments to pass to the script
scriptstringyesJavaScript code to execute in the webview context. If returning a value, it must be JSON-serializable. For functions that return values, use IIFE syntax: "(() => { return value; })()" not "() => { re…
windowIdstringWindow label to target (defaults to "main")

No output schema declared.

No examples provided.

webview_find_element ~278

[Tauri Apps Only] Find DOM elements in a running Tauri app's webview. Supports CSS selectors (default), XPath expressions, and text content matching via the strategy parameter. The "text" strategy first searches element text content, then falls back to placeholder, aria-label, and title attributes. Returns the element's HTML. Requires active driver_session. Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app. For browser pages or documentation sites, use Chrome DevTools MCP instead.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
selectorstringyesThe selector to find: CSS selector (default), XPath expression, text content, or ref ID (e.g., "ref=e3"). Interpretation depends on strategy.
strategystringSelector strategy: "css" (default) for CSS selectors, "xpath" for XPath expressions, "text" to find elements by text content, with fallback to placeholder, aria-label, and title attributes. Ref IDs (…
windowIdstringWindow label to target (defaults to "main")

No output schema declared.

No examples provided.

webview_get_pointed_element ~179

[Tauri Apps Only] Retrieves element metadata for an element the user previously pointed at via Alt+Shift+Click in the Tauri app. Returns the same rich metadata as webview_select_element (tag, id, classes, attributes, text, bounding rect, CSS selector, computed styles, parent chain) plus an annotated screenshot. The user must Alt+Shift+Click an element first before calling this tool. Requires active driver_session. Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
windowIdstringWindow label to target (defaults to "main")

No output schema declared.

No examples provided.

webview_get_styles ~273

[Tauri Apps Only] Get computed CSS styles from elements in a Tauri app. Supports CSS selectors (default), XPath, and text content matching via the strategy parameter. Requires active driver_session. Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app. For browser style inspection, use Chrome DevTools MCP instead.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
multiplebooleanWhether to get styles for all matching elements (true) or just the first (false)
propertiesarraySpecific CSS properties to retrieve. If omitted, returns all computed styles
selectorstringyesElement selector: CSS selector (default), XPath expression, text content, or ref ID
strategystringSelector strategy: "css" (default) for CSS selectors, "xpath" for XPath expressions, "text" to find elements by text content, with fallback to placeholder, aria-label, and title attributes. Ref IDs (…
windowIdstringWindow label to target (defaults to "main")

No output schema declared.

No examples provided.

webview_interact ~387

[Tauri Apps Only] Click, scroll, swipe, focus, or perform gestures in a Tauri app webview. Supported actions: click, double-click, long-press, scroll, swipe, focus. Supports CSS selectors (default), XPath, and text content matching via the strategy parameter. Requires active driver_session. For browser interaction, use Chrome DevTools MCP instead.

NameTypeReqDescription
actionstringyesType of interaction to perform
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
durationnumberDuration in ms for long-press or swipe (default: 500ms for long-press, 300ms for swipe)
fromXnumberStarting X coordinate for swipe
fromYnumberStarting Y coordinate for swipe
scrollXnumberHorizontal scroll amount in pixels (positive = right)
scrollYnumberVertical scroll amount in pixels (positive = down)
selectorstringElement selector: CSS selector (default), XPath expression, text content, or ref ID (e.g., "ref=e3")
strategystringSelector strategy: "css" (default) for CSS selectors, "xpath" for XPath expressions, "text" to find elements by text content, with fallback to placeholder, aria-label, and title attributes. Ref IDs (…
toXnumberEnding X coordinate for swipe
toYnumberEnding Y coordinate for swipe
windowIdstringWindow label to target (defaults to "main")
xnumberX coordinate for direct coordinate interaction
ynumberY coordinate for direct coordinate interaction

No output schema declared.

No examples provided.

webview_keyboard ~337

[Tauri Apps Only] Type text or send keyboard events in a Tauri app. The selector parameter (for "type" action) supports CSS selectors (default), XPath, and text content matching via the strategy parameter. Requires active driver_session. Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app. For browser keyboard input, use Chrome DevTools MCP instead.

NameTypeReqDescription
actionstringyesKeyboard action type: "type" for typing text into an element, "press/down/up" for key events
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
keystringKey to press (required for "press/down/up" actions, e.g., "Enter", "a", "Escape")
modifiersarrayModifier keys to hold
selectorstringElement selector for element to type into (required for "type" action): CSS selector (default), XPath, text content, or ref ID
strategystringSelector strategy: "css" (default) for CSS selectors, "xpath" for XPath expressions, "text" to find elements by text content, with fallback to placeholder, aria-label, and title attributes. Ref IDs (…
textstringText to type (required for "type" action)
windowIdstringWindow label to target (defaults to "main")

No output schema declared.

No examples provided.

webview_screenshot ~223

[Tauri Apps Only] Screenshot a running Tauri app's webview. Requires active driver_session. Captures only visible viewport. Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app. For browser screenshots, use Chrome DevTools MCP instead. For Electron apps, this will NOT work.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
filePathstringFile path to save the screenshot to instead of returning as base64
formatstringImage format
maxWidthintegerMaximum width in pixels. Images wider than this will be scaled down proportionally. Can also be set via TAURI_MCP_SCREENSHOT_MAX_WIDTH environment variable.
qualitynumberJPEG quality (0-100, only for jpeg format)
windowIdstringWindow label to target (defaults to "main")

No output schema declared.

No examples provided.

webview_select_element ~188

[Tauri Apps Only] Activates an element picker overlay in the Tauri app. The user visually selects an element by clicking it, and the tool returns rich element metadata (tag, id, classes, attributes, text, bounding rect, CSS selector, computed styles, parent chain) plus an annotated screenshot with the element highlighted. Requires active driver_session. Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
timeoutnumberTimeout in ms for user to pick an element (5000-120000, default 60000)
windowIdstringWindow label to target (defaults to "main")

No output schema declared.

No examples provided.

webview_wait_for ~224

[Tauri Apps Only] Wait for elements, text, or IPC events in a Tauri app. When type is "selector", supports CSS (default), XPath, and text strategies via the strategy parameter. Requires active driver_session. Targets the only connected app, or the default app if multiple are connected. Specify appIdentifier (port or bundle ID) to target a specific app. For browser waits, use Chrome DevTools MCP instead.

NameTypeReqDescription
appIdentifierstring|numberApp port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected.
strategystringSelector strategy (applies when type is "selector"): "css" (default), "xpath", or "text".
timeoutnumberTimeout in milliseconds (default: 5000ms)
typestringyesWhat to wait for
valuestringyesSelector, text content, or IPC event name to wait for
windowIdstringWindow label to target (defaults to "main")

No output schema declared.

No examples provided.