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.
| SDK | Package | Guide |
|---|---|---|
| Python | cognimemo-client | Python SDK |
| TypeScript / JS | @cognimemo/client | TypeScript SDK |
Install
bash
pip install cognimemo-clientbash
npm install @cognimemo/clientInitialize
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 URL —
https://api.cognimemo.comfor 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.