@neruva/mcp 0.18.0 → 0.18.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -12,12 +12,12 @@ The substrate now exposes the full **9-level cognitive ladder**. Every primitive
12
12
  |---:|---|---|---|
13
13
  | 1 | **Vector retrieval** (OPB pages + spectral routing) | `records_query(engine="opb")` | Pinecone/Zep (Level 1 only) |
14
14
  | 2 | **KG + Pearl do-operator + HD analogy + CBR** | `hd_kg_*` · `agent_causal_query` · `hd_analogy` · `hd_cbr_*` | nobody |
15
- | 3 | **Theory of Mind (nested-belief depth-4)** | `agent_model_belief_add` · `agent_model_belief` | hallucinates @ depth ≥3 |
15
+ | 3 | **Theory of Mind (nested belief)** | `agent_model_belief_add` · `agent_model_belief` | hallucinates at depth |
16
16
  | 4 | **Counterfactual rollouts ("what if k → a'?")** | `agent_counterfactual_rollout` | confabulates |
17
17
  | 5 | **Schema lifting (analogical pattern matching)** | `agent_extract_schema` | needs fine-tuning |
18
18
  | 6 | **Active Inference planning (Friston EFE)** | `agent_register_action` · `agent_plan_efe` | not a primitive |
19
- | 7 | **Few-shot rule induction (3-shot → 100% on 28-rule ARC)** | `agent_induce_rule` | fine-tune (>100 examples) |
20
- | 8 | **Persistent rule storage** (~26,000× cheaper recall) | `agent_persist_rule` · `agent_recall_rule` | re-feed demos every recall |
19
+ | 7 | **Few-shot rule induction** | `agent_induce_rule` | fine-tune (many examples) |
20
+ | 8 | **Persistent rule storage** | `agent_persist_rule` · `agent_recall_rule` | re-feed demos every recall |
21
21
  | 9 | **Continual learning, zero forgetting** | `agent_continual_train` · `agent_continual_predict` | catastrophic forgetting |
22
22
  | + | **Hierarchical chunking (recursive L^K decode)** | `agent_hierarchical_add` · `agent_hierarchical_decode` | not a primitive |
23
23
 
@@ -25,9 +25,7 @@ The substrate now exposes the full **9-level cognitive ladder**. Every primitive
25
25
 
26
26
  ### Why this is unique
27
27
 
28
- Every primitive in rows 3-9 is empirically validated (probes 34 / 47 / 48 / 49 / 50 / 60 / 70) and graduated to production engines at `neruva_hd/engines/`. No published memory vendor offers more than rows 1-2. The **algorithmic moat is 17 trade-secret VSA primitives** that compound none individually replicable in <6-12 months by a competitor.
29
-
30
- The **structural pitch**: substrate-augmented small LLMs (Haiku, Llama-1B) can match frontier-class agentic capabilities at ~26,000× lower cost per recall.
28
+ Every primitive in rows 3-9 is a graduated, production-shipped engine. No published memory vendor offers more than rows 1-2. Substrate-augmented small LLMs can match frontier-class agentic capabilities at a fraction of the cost per recall.
31
29
 
32
30
  ## Install
33
31
 
@@ -113,8 +111,8 @@ Every Claude Code session lands in your Neruva account: tool calls, chat turns,
113
111
  | Anomaly detection (quorum disagreement) | ❌ | ❌ | ✅ |
114
112
  | Federated context (records+KG one call) | ❌ | partial | ✅ |
115
113
  | Portable container | ❌ | ❌ | ✅ `.neruva` |
116
- | p95 latency | varies | 189–200ms | <100ms |
117
- | Cost per recall vs context-stuffing | varies | varies | ~3,125× cheaper |
114
+ | p95 latency | varies | varies | <100ms |
115
+ | Cost per recall vs context-stuffing | varies | varies | dramatically lower |
118
116
 
119
117
  ## Auth
120
118
 
package/dist/server.js CHANGED
@@ -1756,7 +1756,7 @@ const HANDLERS = {
1756
1756
  rule_id: a.rule_id,
1757
1757
  }),
1758
1758
  };
1759
- const server = new Server({ name: "neruva", version: "0.18.0" }, { capabilities: { tools: {} } });
1759
+ const server = new Server({ name: "neruva", version: "0.18.1" }, { capabilities: { tools: {} } });
1760
1760
  server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS }));
1761
1761
  server.setRequestHandler(CallToolRequestSchema, async (req) => {
1762
1762
  const name = req.params.name;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neruva/mcp",
3
- "version": "0.18.0",
3
+ "version": "0.18.1",
4
4
  "description": "MCP server for Neruva agent memory: typed Records (decisions/mistakes/tool_calls/llm_turns, auto-embedded), 5-engine knowledge graph (Hadamard / OPB / multi-shard / quorum / feature-bundle) with managed or BYO-LLM extraction, federated agent_remember/recall/context with question-type dispatch, Pearl's do-operator causal queries, HD analogy, concept blending with provenance, CBR episode store, provable replay via agent_snapshot/restore, quorum anomaly detection, fact invalidation, portable .neruva container, sub-100ms p95. Drop-in for Claude Code / Cursor / Codex / Gemini CLI. LangChain / LangGraph / CrewAI adapters available.",
5
5
  "license": "MIT",
6
6
  "type": "module",