CLI
The aigon command-line tool translates the REST API into shell commands. It's designed for two audiences:
- LLMs and AI assistants — Claude Code, Claude Desktop, and other agents can call
aigondirectly to read, search, and add notes - Humans — use it in scripts, on the command line, or anywhere you want terminal access to your Aigon data
Install
curl -LsSf https://astral.sh/uv/install.sh | sh
uv tool install aigon-cli
Or download the standalone script from GitHub.
Configure
Set your API token (see Authentication for how to get one):
aigon config set api.token YOUR_TOKEN
Verify:
aigon config show
Commands
Notes
aigon notetaker read --limit 5
aigon notetaker read --all --forever --limit 20
aigon notetaker search "meeting"
LLM Mode
Commands optimised for AI assistant consumption:
aigon llm help
aigon notetaker read --format llm --limit 10
Configuration
aigon config show
aigon config set api.token YOUR_TOKEN
aigon config help
MCP Server
Start the MCP server for AI assistant integration:
aigon mcp
See MCP Server for Claude Desktop configuration.
Full Reference
aigon --help
aigon notetaker --help
aigon llm help
See also the old installation instructions for a more detailed step-by-step walkthrough.