CLI for Keenable — authenticate, manage API keys, configure MCP, and search the web.
Homebrew (macOS + Linux):
brew install keenableai/tap/keenable-cliShell (macOS + Linux):
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/keenableai/keenable-cli/releases/latest/download/keenable-cli-installer.sh | shPowerShell (Windows):
irm https://github.com/keenableai/keenable-cli/releases/latest/download/keenable-cli-installer.ps1 | iexFrom source:
cargo install --git https://github.com/keenableai/keenable-cli# Search the web (works without login)
keenable search "rust async patterns" -p
# Login for higher rate limits
keenable login
# Configure MCP for your AI clients (Claude Code, Cursor, etc.)
keenable configure-mcp --allkeenable search "query" # YAML output (for agents)
keenable search "query" -p # Pretty output (for humans)
keenable search "AI news" --site techcrunch.com # Restrict to site
keenable search "query" --published-after 2026-01-01 # Date filter
keenable search "query" --acquired-before 2026-05-01 # Date filter
keenable search "query" --api-key KEY # Use a specific API keyWorks without login (free tier). Log in for higher rate limits.
keenable fetch https://example.com # Fetch page content
keenable fetch https://example.com -p # Pretty output
keenable fetch https://example.com --live # Fetch the live page (skip cache)keenable login # Device-code login (opens browser)
keenable login --api-key <KEY> # Save API key directly (CI, servers)
keenable logout # Clear stored credentialskeenable configure-mcp # Show client status
keenable configure-mcp --all # Configure all detected clients
keenable configure-mcp --cursor # Configure a specific client
keenable reset --all # Remove Keenable from all clientsSupported clients: Claude Code, Cursor, Windsurf, Codex, OpenCode.
The CLI checks for updates automatically (once per hour). To update manually:
brew update && brew upgrade keenable-cli # Homebrew
# or re-run the installer scriptcargo build --releaseEnd-to-end suite (real binary, live API — see tests/e2e/):
export KEENABLE_API_KEY=keen_...
uv run --project tests/e2e pytest tests/e2e -vSee CLAUDE.md for project conventions and architecture.