For the complete documentation index, see llms.txt. Markdown versions of all docs pages are available by appending .md to any docs URL.
Deploy the binary
Deploy agentgateway as a standalone binary on your system.
To run agentgateway as a standalone binary, follow the steps to download, install, and configure the binary on your local machine or server.
Install the binary
Download and install
Download and install the agentgateway binary. Alternatively, you can manually download the binary from the agentgateway releases page.
To install the latest release:
curl -sL https://agentgateway.dev/install | bashExample output:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 8878 100 8878 0 0 68998 0 --:--:-- --:--:-- --:--:-- 69359
Downloading https://github.com/agentgateway/agentgateway/releases/download/v0.4.16/agentgateway-darwin-arm64
Verifying checksum... Done.
Preparing to install agentgateway into /usr/local/bin
Password:
agentgateway installed into /usr/local/bin/agentgatewayVerify the installation
Verify that the agentgateway binary is installed.
agentgateway --versionExample output with the latest version, 1.3.0:
{
"version": "1.3.0",
"git_revision": "90f7b25855fb5f5fbefcc16855206040cba9b77d",
"rust_version": "1.89.0",
"build_profile": "release",
"build_target": "x86_64-unknown-linux-musl"
}Run agentgateway
To run agentgateway, the binary can simply be executed. Configuration will be stored in ~/.config/agentgateway
agentgatewayTo specify an explicit configuration file, use -f:
agentgateway -f config.yamlYou might start with this simple example configuration file.
Open http://localhost:15000/ui to get started!