BeakrGo to website

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

pip install beakr-cli
16 MCP tools
Knowledge base access
Research with citations
Claude Code integration

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 mcp

Explore the docs