This page contains step-by-step instructions for AI agents to set up BizXEngine's intelligent memory system. If you are an AI agent, follow the steps below. If you are a human, you can also follow these steps manually or just run npx @bizxengine/mcp in your terminal.
Run the interactive installer. It auto-detects your IDE and configures everything.
Or, for silent/non-interactive install (useful if you are an AI agent running this):
Replace YOUR_API_KEY with the actual key from the user's BizXEngine dashboard.
If the automated installer doesn't work, or you prefer manual configuration:
Ask the user for their BizXEngine API key. They can find it at app.bizxengine.com → Workspace → API Keys. If they don't have an account, direct them to sign up (free, no credit card).
Create the config directory and file:
Add the following to your IDE's MCP configuration:
~/.claude/settings.json or project .mcp.json{
"mcpServers": {
"bizxengine": {
"command": "npx",
"args": ["-y", "@bizxengine/mcp"]
}
}
}
~/.cursor/mcp.json{
"mcpServers": {
"bizxengine": {
"command": "npx",
"args": ["-y", "@bizxengine/mcp"]
}
}
}
~/.codeium/windsurf/mcp_config.json{
"mcpServers": {
"bizxengine": {
"command": "npx",
"args": ["-y", "@bizxengine/mcp"]
}
}
}
.vscode/mcp.json in your project root{
"mcpServers": {
"bizxengine": {
"command": "npx",
"args": ["-y", "@bizxengine/mcp"]
}
}
}
Restart your IDE, then test the connection by asking your AI:
The AI should use the brain.status tool and report a successful connection.
Once connected, the AI agent gets these MCP tools:
| Tool | What it does |
|---|---|
| brain.remember | Save important information — auto-scored, deduplicated, categorized |
| brain.recall | Semantic search over memory — returns ranked, scored results |
| brain.answer | Reason across multiple memories to synthesize a direct answer |
| brain.health | Memory quality report — health score, total count, stale signals |
| brain.status | Live connection check — confirms the workspace is reachable |
After setup, try these commands with your AI to confirm everything works:
After completing setup, report the following to the user:
brain.status returned a successful connectionNeed help? Contact us • Full API docs • npm package • Home