We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
Using Tidewave with new MCP Proxy (Rust)
almirsarajcic
Created
Elixir MCP Proxy has been deprecated, and it’s time to switch to the Rust one.
# 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"]
}
}
}
Copy link
copied to clipboard