ado-mcp

Install

Prebuilt binaries are published on the latest release. Download the archive for your platform, extract the ado binary, and put it on your PATH.

Platform Architecture Download (latest)
macOS Apple Silicon (arm64) ado-mcp_darwin_arm64.tar.gz
macOS Intel (amd64) ado-mcp_darwin_amd64.tar.gz
Linux amd64 ado-mcp_linux_amd64.tar.gz
Linux arm64 ado-mcp_linux_arm64.tar.gz
Windows amd64 ado-mcp_windows_amd64.zip
Windows arm64 ado-mcp_windows_arm64.zip

Each link always resolves to the newest release. A checksums.txt is published alongside the archives.

??? example “macOS / Linux” Pick your OS/ARCH:

```sh
OS=darwin ARCH=arm64   # OS: darwin|linux   ARCH: amd64|arm64
curl -sSL "https://github.com/rangertaha/ado-mcp/releases/latest/download/ado-mcp_${OS}_${ARCH}.tar.gz" | tar -xz ado
sudo mv ado /usr/local/bin/
ado --version
```

??? example “Windows (PowerShell)” Pick your $Arch:

```powershell
$Arch = "amd64"   # ARCH: amd64|arm64
Invoke-WebRequest "https://github.com/rangertaha/ado-mcp/releases/latest/download/ado-mcp_windows_${Arch}.zip" -OutFile ado.zip
Expand-Archive ado.zip -DestinationPath .
.\ado.exe --version
```

Alternative: install with Go

go install github.com/rangertaha/ado-mcp/cmd/ado@latest

Alternative: build from source

git clone https://github.com/rangertaha/ado-mcp
cd ado-mcp
make build        # produces ./bin/ado

See Development for the full build/test/lint workflow if you’re contributing.

Next: configure it

Once ado is on your PATH, head to Configuration to set up credentials and your MCP client.