@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.
- package/README.md +5 -18
- 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
|
-
```
|
|
26
|
-
|
|
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
|
-
|
|
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
|
-
|
|
52
|
+
npx -y install-mcp @hypothesi/tauri-mcp-server --client claude-code
|
|
55
53
|
```
|
|
56
54
|
|
|
57
|
-
|
|
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
|
|