Agentra LabsAgentra Labs DocsPublic Documentation

Get Started

Quickstart

Fastest path to install and verify each Agentra Labs project.

Zero-friction setup

Use one installer command per runtime. Select the profile that matches your environment:

  • desktop for Claude Desktop/Claude Code auto-merge
  • terminal for binary-only local CLI installs
  • server for remote hosts and service environments

Prereqs

  • macOS, Linux, or Windows with WSL
  • curl available
  • Rust toolchain installed (fallback source build path)
1

Install one runtime (or all three)

Desktop profile (default/backward-compatible)

Desktop profile auto-merges supported local MCP desktop configs.

curl -fsSL https://agentralabs.tech/install/memory/desktop | bash

Installs amem + agentic-memory-mcp and applies desktop MCP merge behavior.

Terminal profile (binary-only)

No desktop config files are modified.

curl -fsSL https://agentralabs.tech/install/memory/terminal | bash

Server profile (remote hosts)

Server-safe install behavior without desktop config writes.

curl -fsSL https://agentralabs.tech/install/memory/server | bash
2

Run binary checks

Version checks

Confirm installed binaries are available in your current PATH.

amem --version
agentic-memory-mcp --version
agentic-vision-mcp --version
acb --version
acb-mcp --version
3

Validate MCP entrypoints

Runtime sanity

Use this output pattern to verify MCP entrypoints before connecting desktop clients.

agentic-memory-mcp --help
agentic-vision-mcp serve --help
acb-mcp serve --help

Expected signal

[ok] Platform detected
[ok] Runtime installed
[info] MCP client merge completed (where supported)
[ok] Entry-point command responds without error
Next

Continue with Integrations to wire desktop clients and runtime profiles.