Back to Home

Getting Started with Memxus

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 →

Claude Desktop / claude.ai

Hosted Remote MCP with OAuth — no local install or API key. Open the connection hub and use Connect with One Click.

  1. Go to /install and click Connect with One Click.
  2. Confirm in Claude Desktop and authorize via Google on the dashboard when prompted.
  3. If the deep link fails, use the manual connector URL on the same page.
Claude setup →

Cursor & VS Code

HTTP MCP on Railway with Bearer auth. Sign up at the dashboard— your aimem_* key is provisioned on first login.

  1. Copy your API key from https://dashboard-aimemory.lat/api-keys.
  2. Cursor: Settings → MCP → paste JSON from /install#cursor.
  3. VS Code: add .vscode/mcp.json using the config from /install#vscode.
Full MCP setup guide →

Custom GPT (ChatGPT)

ChatGPT does not use MCP. Wire your GPT to Memxus with Actions (OpenAPI) and a Bearer token. Same aimem_* key as Cursor.

  1. Sign up and copy your API key from the dashboard.
  2. Create a GPT in the GPT editor and paste instructions from our template.
  3. Add an Action using our OpenAPI schema; set authentication to Bearer with your key.
  4. Test recall in the preview, then publish privately or to the store.
Custom GPT setup guide →

SDK / API (application builders)

Use `AIMemoryClient` from `@aimemory/sdk` to capture content and retrieve context inside Node, Edge, or serverless runtimes.

terminal
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,
});
Full API documentation →