@evantahler/mcpx 0.16.2 → 0.16.3
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 +8 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,14 +12,19 @@ Two audiences:
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
# Via bun
|
|
15
|
+
# Via bun (all platforms)
|
|
16
16
|
bun install -g @evantahler/mcpx
|
|
17
17
|
|
|
18
|
-
# Via curl
|
|
18
|
+
# Via curl (macOS/Linux)
|
|
19
19
|
curl -fsSL https://raw.githubusercontent.com/evantahler/mcpx/main/install.sh | bash
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
```powershell
|
|
23
|
+
# Via PowerShell (Windows)
|
|
24
|
+
irm https://raw.githubusercontent.com/evantahler/mcpx/main/install.ps1 | iex
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
The curl/PowerShell installers download a pre-built binary — no runtime needed. The bun install method requires [Bun](https://bun.sh). Binaries for all platforms are also available on the [GitHub Releases](https://github.com/evantahler/mcpx/releases) page.
|
|
23
28
|
|
|
24
29
|
## Quick Start
|
|
25
30
|
|