Installation¶
Download a release¶
Pre-built binaries for macOS, Linux, and Windows are available on the GitHub Releases page.
- Download the archive for your platform from the latest release.
- Extract the
ziti-mcpbinary and place it somewhere on your PATH (e.g./usr/local/bin).
# Example: macOS Apple Silicon
ZMCP_VER="$(curl -sL https://api.github.com/repos/smilindave26/mcp-ziti/releases/latest | sed -n '/tag_name/s/.*v\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/p')"
curl -sL "https://github.com/smilindave26/mcp-ziti/releases/download/v${ZMCP_VER}/mcp-ziti_${ZMCP_VER}_darwin_arm64.tar.gz" | tar xz ziti-mcp
sudo mv ziti-mcp /usr/local/bin/
A rolling Development Build pre-release with the latest binaries from main is also available for testing.
From source¶
Requires Go 1.24 or later.
git clone https://github.com/smilindave26/mcp-ziti.git
cd mcp-ziti
go build -o ziti-mcp .
The resulting ziti-mcp binary is a single self-contained executable with no runtime dependencies.