The easiest way to install on macOS:
brew tap anythink/tap
brew install anythink
Download the latest binary from the Anythink CLI releases page on GitHub and place it on your PATH:
curl -L https://github.com/anythink-io/anythink-cli/releases/latest/download/anythink-linux-x64 -o anythink
chmod +x anythink
sudo mv anythink /usr/local/bin/
Download the .exe from the GitHub releases page and add it to your system PATH.
The CLI is open source. Clone and build with the .NET 8 SDK:
git clone https://github.com/anythink-io/anythink-cli.git
cd anythink-cli
dotnet build src
dotnet run --project src -- --help
If you don't have an Anythink account yet:
anythink signup
This walks you through creating your account interactively.
anythink login
You will be prompted for your email and password. Your credentials are stored securely in ~/.anythink/config.json.
anythink projects create "My App" --region lon1
anythink projects use my-app
This sets your active profile. All subsequent commands operate against this project until you switch.
anythink entities list
You should see any entities you have already created, or an empty list for a brand new project.
You can connect to as many projects as you like. Each gets saved as a named profile.
# Connect to a second project
anythink projects use my-other-app
# Switch between projects
anythink config use my-app
anythink config use my-other-app
# See all configured profiles
anythink config show
Every command has built-in help:
anythink --help
anythink data --help
anythink workflows --help
Print the full CLI reference as markdown:
anythink docs
Or as JSON, useful for piping into scripts or AI tools:
anythink docs --json