Integrations
Cursor
Connect Cursor to Memax via MCP.
Cursor supports MCP. Configure it once and Cursor can call Memax tools directly.
Quick setup
memax setup --only cursor --mcpManual setup
Add Memax to Cursor's MCP config
Edit ~/.cursor/mcp.json (global, recommended) or
.cursor/mcp.json in your project root:
{
"mcpServers": {
"memax": {
"command": "npx",
"args": ["-y", "memax-cli", "mcp", "serve", "--agent", "cursor"]
}
}
}For remote (hosted) MCP, use a URL-typed server entry with the
auth header under headers:
{
"mcpServers": {
"memax": {
"type": "url",
"url": "https://api.memax.app/mcp",
"headers": { "Authorization": "Bearer mxk_..." }
}
}
}Restart Cursor
Cursor picks up MCP config changes on restart.
Usage
Cursor can:
- Call
memax_recallto pull context before generating code. - Push decisions and discoveries with
memax_pushduring a session. - Browse the topic tree with
memax_topics.
CLI fallback
If MCP isn't available (older Cursor versions, restricted environments):
memax recall "auth middleware" --format text | pbcopy
# Paste into Cursor chat as context.