File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ By the end of this tutorial, you'll have:
2020** macOS/Linux/WSL:**
2121
2222``` bash
23- curl -L " https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_$( uname -s | tr ' [:upper:]' ' [:lower:]' ) _$( uname -m | sed ' s/x86_64/amd64/;s/aarch64/arm64/' ) .tar.gz" | tar xz && sudo mv mcp-publisher /usr/local/bin/
23+ curl -L " https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_$( uname -s | tr ' [:upper:]' ' [:lower:]' ) _$( uname -m | sed ' s/x86_64/amd64/;s/aarch64/arm64/' ) .tar.gz" | tar xz mcp-publisher && sudo mv mcp-publisher /usr/local/bin/
2424```
2525
2626** Windows (PowerShell):**
2727
2828``` powershell
29- $arch = if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture -eq "Arm64") { "arm64" } else { "amd64" }; Invoke-WebRequest -Uri "https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_windows_$arch.tar.gz" -OutFile "mcp-publisher.tar.gz"; tar xf mcp-publisher.tar.gz
29+ $arch = if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture -eq "Arm64") { "arm64" } else { "amd64" }; Invoke-WebRequest -Uri "https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_windows_$arch.tar.gz" -OutFile "mcp-publisher.tar.gz"; tar xf mcp-publisher.tar.gz mcp-publisher.exe; rm mcp-publisher.tar.gz
3030# Move mcp-publisher.exe to a directory in your PATH
3131```
3232
You can’t perform that action at this time.
0 commit comments