Skip to content

SDKs

Official clients for Cognimemo. Both talk to the Gateway with a per-project API key and expose the same surface: retain / recall / reflect, typed blocks, spaces, layered recall, entities, and encryption.

SDKPackageGuide
Pythoncognimemo-clientPython SDK
TypeScript / JS@cognimemo/clientTypeScript SDK

Install

bash
pip install cognimemo-client
bash
npm install @cognimemo/client

Initialize

python
from cognimemo_client import Cognimemo
cm = Cognimemo(base_url="https://api.cognimemo.com", api_key="cmk_live_…")
typescript
import { CognimemoClient } from "@cognimemo/client";
const cm = new CognimemoClient({ baseUrl: "https://api.cognimemo.com", apiKey: "cmk_live_…" });
  • Base URLhttps://api.cognimemo.com for hosted Cognimemo (the Gateway), or your own engine URL if self-hosting.
  • API key — create one in app.cognimemo.com → Connect → API Keys.

Other clients

  • MCP — connect Claude, Cursor, and other agents without an SDK. See MCP Server.
  • REST — call the API directly. See the API Reference.