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

One-line install
25 MCP tools
Knowledge base access
Research with citations
Claude Code + Codex integration

Quick start

The one-liner installs uv (if missing), installs beakr-cli, prompts for your API key, registers the Beakr MCP server in Claude Code and Codex, and copies the Beakr skill plus slash commands.

curl -fsSL https://raw.githubusercontent.com/BeakrHub/beakr-cli/main/install.sh | sh
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