Lobu Memory CLI Reference
Lobu memory commands live under lobu memory. Authentication is shared with the rest of the CLI: run lobu login once, then memory commands reuse that session.
- Hosted: app.lobu.ai
- Default MCP endpoint:
https://lobu.ai/mcp
Install And Authenticate
Section titled “Install And Authenticate”# Run without installingnpx @lobu/cli@latest <command>
# Or install globallynpm install -g @lobu/clilobu <command>
# Authenticate once for all Lobu CLI commandslobu loginUse lobu token --raw when another local tool needs a bearer token command.
Runtime
Section titled “Runtime”lobu run is the only local boot path. There is no separate memory runtime command.
lobu runClient Wiring
Section titled “Client Wiring”lobu memory init
Section titled “lobu memory init”Configures local MCP-capable clients to use a Lobu memory MCP endpoint.
lobu memory initlobu memory init --url http://localhost:8787/mcpThe wizard detects supported clients and auto-configures them when possible. Browser-managed clients fall back to manual setup instructions.
lobu memory configure
Section titled “lobu memory configure”Writes OpenClaw plugin config for @lobu/owletto-openclaw. The generated plugin config uses lobu token --raw, so it reuses top-level lobu login authentication.
openclaw plugins install owletto-openclaw-pluginlobu loginlobu memory configure --url https://lobu.ai/mcp --org my-orglobu memory health --url https://lobu.ai/mcp --org my-orgHealth
Section titled “Health”lobu memory health
Section titled “lobu memory health”Checks that the current Lobu login can authenticate to the MCP endpoint and list available tools.
lobu memory healthlobu memory health --org my-orglobu doctor --memory-onlyOrganization Selection
Section titled “Organization Selection”lobu memory org
Section titled “lobu memory org”Stores the default memory organization for commands that need an org-scoped MCP URL.
lobu memory org currentlobu memory org set my-orgYou can also override per-command with:
--org <slug>--url <mcp-url>LOBU_MEMORY_ORGLOBU_MEMORY_URL
Run MCP Tools Directly
Section titled “Run MCP Tools Directly”lobu memory run
Section titled “lobu memory run”Lists tools when called without arguments, or executes a tool when given a tool name and JSON params.
# List available toolslobu memory run --org my-org
# Search knowledgelobu memory run search_knowledge '{"query":"Acme"}' --org my-org
# Save new knowledgelobu memory run save_knowledge '{"content":"Prefers weekly summaries","semantic_type":"preference","metadata":{}}' --org my-org
# Discover SDK methodslobu memory run search '{"query":"watchers.create"}' --org my-org
# Run a TypeScript script over the typed client SDKlobu memory run execute '{"script":"export default async (ctx, client) => client.entities.list({ entity_type: \"company\", limit: 5 })"}' --org my-orgSeed Project Memory
Section titled “Seed Project Memory”lobu memory seed
Section titled “lobu memory seed”Provisions a memory workspace from [memory.owletto] in lobu.toml, ./models, and optional ./data.
lobu memory seedlobu memory seed --dry-runlobu memory seed --org my-org --url https://lobu.ai/mcpBrowser Auth
Section titled “Browser Auth”lobu memory browser-auth
Section titled “lobu memory browser-auth”Captures browser cookie state for connectors that rely on a real browser session.
lobu memory browser-auth --connector x --auth-profile-slug my-profilelobu memory browser-auth --connector x --auth-profile-slug my-profile --checkUseful flags:
--chrome-profile <name>chooses a local Chrome profile--launch-cdplaunches a dedicated remote-debugging Chrome profile--dedicated-profile <name>names the dedicated profile
Skills
Section titled “Skills”The old standalone Owletto starter skills are folded into the bundled Lobu starter skill:
lobu skills add lobuLocal skills are still discovered from skills/<id>/SKILL.md and agents/<agent-id>/skills/<id>/SKILL.md.
Related
Section titled “Related”- Lobu CLI: CLI Reference
- Memory docs: Memory