Quickstart
Connect MemQ in 30 seconds.
Connect, verify first recall, then add real project context. You are one recall test away from persistent memory.
Add to your editor
Paste this into your MCP config file
{
"mcpServers": {
"memq": {
"type": "http",
"url": "https://mcp.multinex.ai/mcp/v1",
"transport": "streamable-http",
"auth": {
"type": "oauth2",
"discoveryUrl": "https://billing.multinex.ai/.well-known/oauth-authorization-server"
}
}
}
}Config file locations
~/.claude/mcp.json~/.cursor/mcp.json.vscode/mcp.json (workspace) or User Settings~/Library/Application Support/Claude/claude_desktop_config.jsonSettings → MCP ServersApprove the connection
A confirmation dialog opens in your browser
When you start your first session, your browser opens a secure confirmation page.
Sign in with your Multinex account (or create one), then click Approve to connect MemQ to your editor. This only happens once — your credentials refresh automatically after that.
You're connected
Verify first recall before adding real project context
That's it. Write one small decision, ask your agent to find it, and confirm the namespace. Then add real code patterns, decisions, debugging sessions, and team runbooks.
For automation & CI
If your agent can't open a browser (CI pipelines, background workers, cron jobs), use an API key instead of OAuth. Generate one from your dashboard →
{
"mcpServers": {
"memq": {
"type": "http",
"url": "https://mcp.multinex.ai/mcp/v1",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer <YOUR_API_KEY>"
}
}
}
}