> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keenable.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

Keenable provides web search and content access for AI agents. The CLI and MCP server work out of the box — no API key required.

<Columns cols={2}>
  <Column>
    <Card title="CLI" icon="rectangle-terminal" href="/cli">
      Search from the terminal
    </Card>
  </Column>

  <Column>
    <Card title="MCP" icon="plug" href="/mcp-server">
      Add tools to your agent
    </Card>
  </Column>
</Columns>

Install the CLI with your preferred method:

<CodeGroup>
  ```bash Homebrew theme={null}
  brew install keenableai/tap/keenable-cli
  ```

  ```bash macOS / Linux theme={null}
  curl --proto '=https' --tlsv1.2 -LsSf \
    https://github.com/keenableai/keenable-cli/releases/latest/download/keenable-cli-installer.sh \
    | sh
  ```

  ```powershell PowerShell theme={null}
  irm https://github.com/keenableai/keenable-cli/releases/latest/download/keenable-cli-installer.ps1 | iex
  ```
</CodeGroup>

To give your agents web search, set up MCP. The CLI can configure it for all supported agents in one command:

```bash theme={null}
keenable configure-mcp --all
```

This sets up Claude Code, Cursor, Windsurf, and other detected clients. See [MCP](/mcp-server) for manual setup.

Once installed, run a search straight from the terminal:

```bash theme={null}
keenable search "AI news" -p
```

That's it — results come back immediately, no account or API key needed.
