@nxuss/lemma 0.4.10 → 0.4.12

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
@@ -1,4 +1,4 @@
1
- # Lemma v0.4.10
1
+ # Lemma v0.4.12
2
2
  > **The Intelligent AI Gateway — Privacy, Performance, and Precision for the Agentic Era.**
3
3
 
4
4
  Lemma is a high-performance orchestration layer that sits between your development environment and LLM providers. It transforms the way you build with AI by providing **Shared Semantic Memory**, **Autonomous Cost Optimization**, and **Privacy Guardrails**.
@@ -29,7 +29,7 @@ Lemma is a high-performance orchestration layer that sits between your developme
29
29
 
30
30
  ## 🚀 Smart CLI (Zero-Config)
31
31
 
32
- Lemma v0.4.10 introduces the **Smart CLI**, making it easier than ever to get started:
32
+ Lemma v0.4.12 introduces the **Smart CLI**, making it easier than ever to get started:
33
33
 
34
34
  ```bash
35
35
  # 1. Install
@@ -71,6 +71,31 @@ You don't need to change your habits. Just point your tool's "Base URL" to Lemma
71
71
  * **AutoGPT / BabyAGI:** Set the `OPENAI_API_BASE` environment variable.
72
72
  * **Custom Apps:** Replace `https://api.openai.com/v1` with `http://localhost:8081/v1` in your SDK initialization.
73
73
 
74
+ ### 💎 Pro Integration (Model Context Protocol - MCP)
75
+ For **Lemma Pro** users, you can expose Lemma's entire intelligence layer (Privacy Firewall, Semantic Brain Search, and Auto-Heal) directly as native tools using the **Model Context Protocol (MCP)**.
76
+
77
+ #### 🟢 Cursor:
78
+ 1. Go to **Settings > Features > MCP**.
79
+ 2. Click **+ Add New MCP Server**.
80
+ 3. Configure the server:
81
+ * **Name**: `Lemma`
82
+ * **Type**: `command`
83
+ * **Command**: `lemma mcp`
84
+ 4. Click **Save**. A green **"Connected"** dot will appear, confirming that the IDE has loaded all of Lemma's tools.
85
+
86
+ #### 🟢 Claude Desktop:
87
+ Add the following to your `claude_desktop_config.json` configuration file:
88
+ ```json
89
+ {
90
+ "mcpServers": {
91
+ "lemma": {
92
+ "command": "npx",
93
+ "args": ["-y", "@nxuss/lemma", "mcp"]
94
+ }
95
+ }
96
+ }
97
+ ```
98
+
74
99
  ### ⚡ Why use Lemma for Chat?
75
100
  1. **Privacy:** Your IDE won't leak your secrets to the cloud.
76
101
  2. **Context:** Lemma syncs your runtime crashes directly to your chat window.