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
0 comments
Copy link
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"]
}
}
}
copied to clipboard
Comments (0)
Sign in with GitHub to join the discussion