Choose the integration that fits your workflow: one-click OAuth for Claude, Bearer MCP for Cursor and VS Code, Custom GPT Actions for ChatGPT, or `@aimemory/sdk` for your own apps.
Connection hub →Hosted Remote MCP with OAuth — no local install or API key. Open the connection hub and use Connect with One Click.
HTTP MCP on Railway with Bearer auth. Sign up at the dashboard— your aimem_* key is provisioned on first login.
.vscode/mcp.json using the config from /install#vscode.ChatGPT does not use MCP. Wire your GPT to Memxus with Actions (OpenAPI) and a Bearer token. Same aimem_* key as Cursor.
Use `AIMemoryClient` from `@aimemory/sdk` to capture content and retrieve context inside Node, Edge, or serverless runtimes.
npm install @aimemory/sdk
import { AIMemoryClient } from '@aimemory/sdk';
const client = new AIMemoryClient({
apiKey: process.env.AIMEMORY_API_KEY!,
workspaceId: process.env.AIMEMORY_WORKSPACE_ID,
});