# Using Tidewave with new MCP Proxy (Rust)

[Elixir MCP Proxy](https://elixirdrops.net/d/uX3gTNPJ) has been deprecated, and it's time to switch to the Rust one.

```bash
# Uninstall MCP Proxy escript
mix escript.uninstall mcp-proxy

# macOS (Apple Silicon)
curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-aarch64-apple-darwin.tar.gz | tar xv

# macOS (Intel)
curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-x86_64-apple-darwin.tar.gz | tar xv

# Linux (x86)
curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-x86_64-unknown-linux-musl.tar.gz | tar zxv

# Linux (arm64 / aarch64)
curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-aarch64-unknown-linux-musl.tar.gz | tar zxv

sudo mv mcp-proxy /usr/local/bin

# Update `.cursor/mcp.json`
{
  "mcpServers": {
    "tidewave": {
      "command": "mcp-proxy",
      "args": ["http://localhost:4000/tidewave/mcp"]
    }
  }
}
```

Source: https://github.com/tidewave-ai/mcp_proxy_rust


---

Created by: almirsarajcic
Date: May 08, 2025
URL: https://elixirdrops.net/d/UAo4BtYi
