Settings
API keys and configuration.
Current API Key
Not set
Set API Key
Stored locally in your browser. Never sent anywhere except the Engram API.
Create New API Key
Generate a new API key via the backend admin endpoint. Requires an existing valid key.
API URL
http://localhost:8788
Configured via NEXT_PUBLIC_API_URL in .env.local
Chrome Profiles
No Chrome profiles connected.
Setup Guide
Get Engram running from scratch in 4 steps.
1. Install
cd engram pip install -e .
2. Start the API
python start.py # API key will be printed to console on first run
3. Start the dashboard
cd web npm install npm run dev
4. Connect MCP to an agent
Add to ~/.mcp.json (global) or .mcp.json (per project):
{
"mcpServers": {
"engram": {
"command": "python",
"args": ["-m", "engram.mcp.server"],
"env": {
"ENGRAM_URL": "http://localhost:8788",
"ENGRAM_API_KEY": "en-your-key-here"
}
}
}
}Restart your agent after adding the config. The Engram tools (save_memory, query_memory, get_secret, etc.) will be available in every session.