Skip to content

Installation

yorishiro-proxy is distributed as a single binary. You can download a pre-built release or build from source.

Prerequisites

  • Claude Code -- yorishiro-proxy operates as an MCP server for Claude Code
  • Go 1.25+ -- required only if building from source
  • playwright-cli (optional) -- for automated browser-based traffic capture

Download from GitHub Releases

Download the latest pre-built binary from the GitHub Releases page. Assets are named yorishiro-proxy-{version}-{os}-{arch} (e.g., yorishiro-proxy-v1.0.0-linux-amd64; Windows binaries have an .exe suffix).

Visit the Releases page and download the binary for your platform, or use curl:

# Replace VERSION, OS, and ARCH with your values.
# OS: linux, darwin  ARCH: amd64, arm64
curl -Lo yorishiro-proxy \
  "https://github.com/usk6666/yorishiro-proxy/releases/download/VERSION/yorishiro-proxy-VERSION-OS-ARCH"
chmod +x yorishiro-proxy
sudo mv yorishiro-proxy /usr/local/bin/

Download the .exe binary from the Releases page and place it in a directory on your PATH.

Build from source

Clone the repository and build with make:

git clone https://github.com/usk6666/yorishiro-proxy.git
cd yorishiro-proxy
make build

This produces the binary at bin/yorishiro-proxy. Move it to a directory on your PATH:

sudo mv bin/yorishiro-proxy /usr/local/bin/

Verify the installation

Run the help command to confirm the binary is working:

yorishiro-proxy -h

You should see the version, usage information, and available flags.

Next steps