@@ -16,13 +16,13 @@ Depending on your Mac, you can download the latest version with one of the follo
1616Apple Silicon:
1717
1818``` bash
19- $ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-aarch64-apple-darwin.tar.gz | tar xv
19+ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-aarch64-apple-darwin.tar.gz | tar xv
2020```
2121
2222Intel:
2323
2424``` bash
25- $ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-x86_64-apple-darwin.tar.gz | tar xv
25+ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-x86_64-apple-darwin.tar.gz | tar xv
2626```
2727
2828which will put the ` mcp-proxy ` binary in the current working directory (` pwd ` ).
@@ -32,7 +32,7 @@ Note that the binaries are not notarized, so if you download the release with th
3232Alternatively, you can remove the quarantine flag with:
3333
3434``` bash
35- $ xattr -d com.apple.quarantine /path/to/mcp-proxy
35+ xattr -d com.apple.quarantine /path/to/mcp-proxy
3636```
3737
3838### Linux
@@ -42,13 +42,13 @@ You can download the latest release from the [Releases page](https://github.com/
4242x86:
4343
4444``` bash
45- $ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-x86_64-unknown-linux-musl.tar.gz | tar zxv
45+ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-x86_64-unknown-linux-musl.tar.gz | tar zxv
4646```
4747
4848arm64 / aarch64:
4949
5050``` bash
51- $ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-aarch64-unknown-linux-musl.tar.gz | tar zxv
51+ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-aarch64-unknown-linux-musl.tar.gz | tar zxv
5252```
5353
5454### Windows
@@ -64,7 +64,7 @@ curl.exe -L -o mcp-proxy.zip https://github.com/tidewave-ai/mcp_proxy_rust/relea
6464The proxy is built in Rust. If you have Rust and its tools installed, the project can be built with ` cargo ` :
6565
6666``` bash
67- $ cargo build --release
67+ cargo build --release
6868```
6969
7070Then, the binary will be located at ` target/release/mcp-proxy ` .
0 commit comments