npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hypothesi/tauri-mcp-server

v0.9.0

Published

A Model Context Protocol server for use with Tauri v2 applications

Readme

@hypothesi/tauri-mcp-server

npm version License: MIT

A Model Context Protocol (MCP) server that enables AI assistants like Claude, Cursor, and Windsurf to build, test, and debug Tauri® v2 applications.

📖 Full Documentation

Features

| Category | Capabilities | |----------|-------------| | 🎯 UI Automation | Screenshots, clicks, typing, scrolling, element finding, visual element picker | | 🔍 IPC Monitoring | Capture and inspect Tauri IPC calls in real-time | | 📱 Mobile Dev | List Android emulators & iOS simulators | | 📋 Logs | Stream console, Android logcat, iOS, and system logs |

Quick Start

1. Add the MCP Bridge Plugin to Your Tauri App

cargo add tauri-plugin-mcp-bridge
// src-tauri/src/main.rs
fn main() {
    let mut builder = tauri::Builder::default();

    #[cfg(debug_assertions)]
    {
        builder = builder.plugin(tauri_plugin_mcp_bridge::init());
    }

    builder
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}

Note: The npm package @hypothesi/tauri-plugin-mcp-bridge is optional—only needed if you want to call the plugin from your app's frontend code. The MCP server communicates with the Rust plugin directly via WebSocket.

2. Configure Your AI Assistant

Use install-mcp to add the server to your AI assistant:

npx -y install-mcp @hypothesi/tauri-mcp-server --client claude-code

Supported clients: claude-code, cursor, windsurf, vscode, cline, roo-cline, claude, zed, goose, warp, codex

Multi-App Support

The MCP server supports connecting to multiple Tauri apps simultaneously. Each app runs on a unique port, and the most recently connected app becomes the "default" app.

Key Features:

  • Connect to multiple apps on different ports
  • Default app used when no appIdentifier specified
  • Target specific apps using port number or bundle ID
  • Stop individual sessions or all sessions at once

Example Usage:

// Connect to first app
await driver_session({ action: "start", port: 9223 })

// Connect to second app
await driver_session({ action: "start", port: 9224 })

// Check status - shows both apps with default indicator
await driver_session({ action: "status" })

// Use default app (most recent - port 9224)
await webview_screenshot()

// Target specific app by port
await webview_screenshot({ appIdentifier: 9223 })

// Stop specific app
await driver_session({ action: "stop", appIdentifier: 9223 })

// Stop all apps
await driver_session({ action: "stop" })

Available Tools (20 total)

Setup & Configuration

| Tool | Description | |------|-------------| | get_setup_instructions | Get setup/update instructions for the MCP Bridge plugin |

UI Automation

| Tool | Description | |------|-------------| | driver_session | Start/stop/status automation session | | webview_find_element | Find elements by CSS selector, XPath, text, or ref ID | | read_logs | Read console, Android, iOS, or system logs | | webview_interact | Click, scroll, swipe, focus, long-press | | webview_screenshot | Capture webview screenshots (JPEG default) | | webview_keyboard | Type text or send key events | | webview_wait_for | Wait for elements, text, or events | | webview_get_styles | Get computed CSS styles | | webview_execute_js | Execute JavaScript in webview | | webview_dom_snapshot | Get structured DOM snapshot (accessibility or structure) | | webview_select_element | Visual element picker — user clicks an element, returns metadata + screenshot | | webview_get_pointed_element | Get metadata for element user Alt+Shift+Clicked | | manage_window | List windows, get info, or resize |

IPC & Plugin

| Tool | Description | |------|-------------| | ipc_execute_command | Execute Tauri IPC commands | | ipc_get_backend_state | Get app metadata and state | | ipc_monitor | Start/stop IPC monitoring | | ipc_get_captured | Get captured IPC traffic | | ipc_emit_event | Emit custom events |

Mobile Development

| Tool | Description | |------|-------------| | list_devices | List Android devices and iOS simulators |

Links

License

MIT © hypothesi


Trademark Notice

TAURI® is a registered trademark of The Tauri Programme within the Commons Conservancy. https://tauri.app/

This project is not affiliated with, endorsed by, or sponsored by The Tauri Programme within the Commons Conservancy.