@hypothesi/tauri-mcp-server 0.2.1 → 0.2.2

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.
Files changed (2) hide show
  1. package/README.md +5 -18
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -22,10 +22,8 @@ A **Model Context Protocol (MCP) server** that enables AI assistants like Claude
22
22
 
23
23
  ### 1. Add the MCP Bridge Plugin to Your Tauri App
24
24
 
25
- ```toml
26
- # Cargo.toml
27
- [dependencies]
28
- tauri-plugin-mcp-bridge = "0.1"
25
+ ```bash
26
+ cargo add tauri-plugin-mcp-bridge
29
27
  ```
30
28
 
31
29
  ```rust
@@ -48,24 +46,13 @@ fn main() {
48
46
 
49
47
  ### 2. Configure Your AI Assistant
50
48
 
51
- **Claude Code:**
49
+ Use [install-mcp](https://www.npmjs.com/package/install-mcp) to add the server to your AI assistant:
52
50
 
53
51
  ```bash
54
- claude mcp add tauri npx @hypothesi/tauri-mcp-server
52
+ npx -y install-mcp @hypothesi/tauri-mcp-server --client claude-code
55
53
  ```
56
54
 
57
- **Cursor / VS Code / Windsurf / Cline:**
58
-
59
- ```json
60
- {
61
- "mcpServers": {
62
- "tauri": {
63
- "command": "npx",
64
- "args": ["-y", "@hypothesi/tauri-mcp-server"]
65
- }
66
- }
67
- }
68
- ```
55
+ Supported clients: `claude-code`, `cursor`, `windsurf`, `vscode`, `cline`, `roo-cline`, `claude`, `zed`, `goose`, `warp`, `codex`
69
56
 
70
57
  ## Available Tools
71
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypothesi/tauri-mcp-server",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "A Model Context Protocol server for Tauri v2 development",
5
5
  "type": "module",
6
6
  "bin": {