Command Palette

Search for a command to run...

UnylyUnyly
Browse all

0Latency

FreeNot checked

Persistent memory layer for AI agents with sub-100ms recall, semantic search, and knowledge graphs.

GitHubEmbed

About

Persistent memory layer for AI agents with sub-100ms recall, semantic search, and knowledge graphs.

README

Official Python and JavaScript SDKs for the 0Latency memory API.

Quick Start

Python (PyPI)

pip install zerolatency

Before:

# Manual API calls
import requests

response = requests.post(
    "https://api.0latency.ai/memories/extract",
    headers={"X-API-Key": "zl_..."},
    json={"agent_id": "my-agent", "content": "..."}
)

After:

from zerolatency import ZeroLatency

client = ZeroLatency(api_key="zl_...")
client.store("my-agent", "Remember this important fact")
context = client.recall("my-agent", "What do you remember?")

JavaScript/TypeScript (npm)

npm install @0latency/sdk

Before:

// Manual fetch calls
const response = await fetch("https://api.0latency.ai/memories/extract", {
  method: "POST",
  headers: {"X-API-Key": "zl_..."},
  body: JSON.stringify({agent_id: "my-agent", content: "..."})
});

After:

import { ZeroLatency } from '@0latency/sdk';

const client = new ZeroLatency({ apiKey: 'zl_...' });
await client.store('my-agent', 'Remember this important fact');
const context = await client.recall('my-agent', 'What do you remember?');

Provider Support

Provider Python JavaScript Notes
Anthropic (Claude) Native integration via MCP
OpenAI (GPT-4) Use SDK in tool functions
Google (Gemini) Use SDK in function calling
Custom Works with any LLM

Features

  • 🚀 Sub-100ms recall - Fast enough for real-time conversations
  • 🧠 Semantic search - Query by meaning, not keywords
  • Temporal decay - Recent memories weighted higher
  • 🔗 Knowledge graphs - Auto-extract entities and relationships
  • 🔒 Private by default - Your data, your infrastructure

Documentation

Get Started

  1. Sign up: https://0latency.ai
  2. Get your API key
  3. Install the SDK
  4. Start building

Support


License: MIT
Version: 0.1.0

from github.com/0latency-ai/0latency

Installing 0Latency

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/0latency-ai/0latency

FAQ

Is 0Latency MCP free?

Yes, 0Latency MCP is free — one-click install via Unyly at no cost.

Does 0Latency need an API key?

No, 0Latency runs without API keys or environment variables.

Is 0Latency hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install 0Latency in Claude Desktop, Claude Code or Cursor?

Open 0Latency on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare 0Latency with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs