0Latency
FreeNot checkedPersistent memory layer for AI agents with sub-100ms recall, semantic search, and knowledge graphs.
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
- Full API docs: https://0latency.ai/docs
- MCP integration: https://0latency.ai/docs/mcp
- Examples: https://0latency.ai/examples
- GitHub: https://github.com/0latency
Get Started
- Sign up: https://0latency.ai
- Get your API key
- Install the SDK
- Start building
Support
- Discord: https://discord.com/invite/clawd
- Email: [email protected]
- Docs: https://0latency.ai/docs
License: MIT
Version: 0.1.0
Installing 0Latency
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/0latency-ai/0latencyFAQ
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
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
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
