MCP Adapter

Connect BizXEngine to any MCP-compatible AI tool — Claude Desktop, Claude Code, Cursor, Windsurf, VS Code, and more.

The @bizxengine/mcp package is a thin stdio adapter that translates MCP tool calls into REST requests to the BizXEngine API. All intelligence (scoring, deduplication, decay, reasoning) runs in the cloud.

Installation

npx @bizxengine/mcp

The interactive installer detects your AI tools and configures everything automatically — API key storage, MCP server registration, and memory behaviour instructions.

You need a BizXEngine API key. Get one free at app.bizxengine.com — no credit card required.

Silent install

For CI, scripts, or AI-assisted setup:

npx @bizxengine/mcp --install YOUR_API_KEY

Available tools

Once installed, your AI gets these capabilities:

ToolWhat it does
brain.rememberSave important information — auto-scored for importance, deduplicated, categorized
brain.recallSemantic search over your memory store — returns ranked, scored results
brain.answerLLM reasoning across multiple memories — synthesizes a direct answer
brain.healthMemory quality report — health score, total count, stale signals
brain.statusLive connection check — confirms the workspace is reachable

Multi-agent memory

Same API key = same workspace = shared intelligence. Configure multiple agents with the same key:

# Agent 1 — your machine
npx @bizxengine/mcp --install bxk_workspace_key

# Agent 2 — teammate's machine
npx @bizxengine/mcp --install bxk_workspace_key

# Agent 3 — CI / automation
npx @bizxengine/mcp --install bxk_workspace_key

One agent learns a client prefers morning meetings. Every other agent on the workspace knows it immediately.

Environment variables

VariableDescription
BIZX_API_KEYYour BizXEngine API key. Alternatively stored in ~/.bizxengine/config.json.

The adapter has zero runtime dependencies beyond the MCP SDK. It adds roughly 5KB to your setup.