Skip to main content
Installing agno 2.7 or later gives you the Agno CLI alongside the SDK:
pip install -U agno
agno --help
Two commands land on your PATH: agno and agnoctl. Both run the same CLI. The agnoctl package is also published standalone with typer, rich, and httpx as dependencies, so you can run it on machines without the SDK:
uvx agnoctl connect
The CLI scaffolds AgentOS projects (agno create), runs them with Docker Compose (agno up), connects coding agents over MCP (agno connect), and manages service-account tokens (agno tokens).

Next Steps