
Your knowledge base in the terminal and in your AI tools.
The Beakr CLI gives you direct access to your knowledge base, research tools, and connected services from the command line. The MCP server brings the same capabilities to Claude and other AI assistants.
〉 Developer Guide
Quick start
pip install beakr-cli
beakr auth login
beakr research "What decisions were made last week?"CLI, API, and MCP access
Developers can use Beakr three ways: the CLI for terminal workflows, direct API access with a Beakr API key for application integrations, and the MCP server for Claude Code, Cursor, and other MCP-compatible agents. The same project and organization scopes apply across all three.
export BEAKR_API_KEY="bk_live_..."
export BEAKR_API_URL="https://api.thebeakr.com"
# CLI
beakr kb search "trial protocol"
# API
curl -H "Authorization: Bearer $BEAKR_API_KEY" \
"$BEAKR_API_URL/v1/kb/search?q=trial%20protocol"
# MCP
beakr mcpExplore the docs
Install the CLI and get up and running in under a minute.
API key login, sandbox environments, and local development mode.
Browse, search, and inspect your pages, sources, and graph.
Ask questions and get cited answers from your knowledge base.
Connect Beakr to Claude Code, Cursor, and other AI assistants.
Complete reference for all 16 MCP tools.