wyrm-mcp 3.7.1 → 3.7.2

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.
Files changed (2) hide show
  1. package/README.md +17 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -177,7 +177,23 @@ Add to `~/.codeium/windsurf/mcp_config.json`:
177
177
 
178
178
  Or run **`wyrm-setup`** to auto-detect and configure all installed AI clients at once.
179
179
 
180
- ### 3. Use It
180
+ ### 3. Enable Semantic Search (Optional but Recommended)
181
+
182
+ Wyrm uses hybrid search (FTS5 + semantic vectors) when [Ollama](https://ollama.com) is running locally. No configuration needed — Wyrm auto-detects it.
183
+
184
+ ```bash
185
+ # Install Ollama: https://ollama.com
186
+ ollama pull nomic-embed-text
187
+ ```
188
+
189
+ That's it. Once `nomic-embed-text` is available, `wyrm_search` automatically upgrades from keyword-only to hybrid semantic+keyword search using Reciprocal Rank Fusion. If Ollama isn't running, Wyrm falls back to FTS5 silently — no errors, no config changes required.
190
+
191
+ To use OpenAI embeddings instead:
192
+ ```bash
193
+ WYRM_VECTOR_PROVIDER=openai OPENAI_API_KEY=sk-... wyrm-mcp
194
+ ```
195
+
196
+ ### 4. Use It
181
197
 
182
198
  Once connected, your AI has access to all Wyrm tools. Try:
183
199
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wyrm-mcp",
3
- "version": "3.7.1",
3
+ "version": "3.7.2",
4
4
  "description": "🐉 Wyrm - Persistent AI Memory System with encryption, full-text search, and infinite storage",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",