Memory that
reasons. Not memory you reason over.
Pinecone-shaped agent memory at the speed of a function call -- plus a substrate that answers knowledge-graph queries, analogies, causal interventions, and plans itself. No model in the loop. Deterministic. Sub-millisecond.
Already on Pinecone? Change one import.
Same client. Same JSON. Same upsert / query / delete. Move your codebase across in the time it takes to commit a diff.
# before from pinecone import Pinecone # after from neruva import Pinecone
Wire into the tool you already use.
One MCP server, every modern coding agent. Pick your client and paste the line.
claude mcp add neruva \ --env NERUVA_API_KEY=$NERUVA_API_KEY \ -- npx -y @neruva/mcp
Operations on memory, not just storage of it.
Every other vector DB is a dumb cabinet. You store, you retrieve by cosine, then you pay an LLM to think. Neruva's HD-native API lets the substrate itself answer the question -- knowledge-graph queries, analogies, causal inference -- all over HTTP, all deterministic, none of them burning model tokens.
POST /v1/hd/kg/people/facts
{"facts":[
{"subject":"alice","relation":"lives_in","object":"toronto"},
{"subject":"alice","relation":"works_at","object":"acme"}
]}
POST /v1/hd/kg/people/query
{"subject":"alice","relation":"lives_in"}
-> {"object":"toronto","confidence":0.71}POST /v1/hd/analogy
{"n_feat":6, "a":0, "b":1, "c":2, "seed":4301}
-> {"candidate":3, "cosine":0.999, "confidence":0.17}POST /v1/hd/causal/scm1/query
{"query_type":"observation",
"condition_var":1, "condition_value":1,
"query_var":2, "query_value":1}
POST /v1/hd/causal/scm1/query
{"query_type":"intervention", ...}Every agent team hits the same wall.
We've heard it from teams shipping agents into production. The shape of pain is the same every time.
Your agents forget between sessions.
todayContext resets the moment the loop ends. Users restart and the agent has no idea who they are.
with neruvaAppend-only memory keyed by agent + user. Recall in a single call, no LLM round-trip.
The memory bill scales with every user.
todayVector DBs charge per index, per pod, per read unit. Spin up 10,000 user namespaces and you're funding the wrong startup.
with neruvaOne mmap segment per namespace. Marginal cost per agent rounds to zero.
LLM-as-memory hallucinates -- and bills you for it.
todayCalling a model to summarize, extract, and rerank on every write adds seconds of latency and per-token cost that compounds.
with neruvaNo model in the retrieval path. Deterministic, auditable, cheap by construction.
Write-heavy workloads break read-optimized indexes.
todayHNSW rebuilds choke when agents write thousands of memories per minute. Throughput collapses; tail latency explodes.
with neruvaAppend-only write-ahead log with async indexing. Writes don't wait for the index.
Nobody can audit what your agent remembers.
todayCompliance asks 'show me what this agent knows about user X' and the answer is a black-box embedding.
with neruvaEvery memory is a first-class row with metadata, timestamp, and a content-addressable id. Inspect, export, delete.
Surgical forget is an afterthought.
todayA user revokes consent. Now you have to find their fingerprint scattered across embeddings, rebuilds, and caches.
with neruvaSoft-delete by id, by filter, or by predicate. Tombstones flush on the next compaction.
Designed for the workload you actually run.
$eq, $ne, $in, $nin, $gt, $gte, $lt, $lte.Stop renting search infra.
Start owning agent memory.
$5 in credits on signup. No card. No subscription. No demo call. Wire it in and decide.