@echoes-io/mcp-server 1.9.1 → 2.1.0

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 +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -57,7 +57,7 @@ Then configure:
57
57
  "command": "echoes-mcp-server",
58
58
  "cwd": "/path/to/timeline-pulse",
59
59
  "env": {
60
- "ECHOES_RAG_PROVIDER": "e5-small"
60
+ "ECHOES_RAG_PROVIDER": "qwen3"
61
61
  }
62
62
  }
63
63
  }
@@ -65,7 +65,7 @@ Then configure:
65
65
  ```
66
66
 
67
67
  **Optional RAG Configuration:**
68
- - `ECHOES_RAG_PROVIDER`: Embedding provider (`e5-small`, `e5-large`, or `gemini`). Default: `e5-small`
68
+ - `ECHOES_RAG_PROVIDER`: Embedding provider (`qwen3`, `nomic-embed`, `bge-base`, `e5-large`, `e5-small`, or `gemini`). Default: `qwen3`
69
69
  - `ECHOES_GEMINI_API_KEY`: Required if using `gemini` provider
70
70
 
71
71
  ## Execution Modes
@@ -113,11 +113,11 @@ echoes-io/
113
113
  .github/ # Multi-timeline mode runs from here
114
114
  timeline-eros/ # Private timeline repo
115
115
  tracker.db # Timeline-specific database
116
- rag.db # Timeline-specific RAG index
116
+ lancedb/ # Timeline-specific RAG vector database
117
117
  content/...
118
118
  timeline-other/ # Another private timeline
119
119
  tracker.db
120
- rag.db
120
+ lancedb/
121
121
  content/...
122
122
  ```
123
123
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@echoes-io/mcp-server",
3
3
  "type": "module",
4
- "version": "1.9.1",
4
+ "version": "2.1.0",
5
5
  "description": "Model Context Protocol server for AI integration with Echoes storytelling platform",
6
6
  "scripts": {
7
7
  "dev": "tsx cli/index.ts",
@@ -84,7 +84,7 @@
84
84
  "dependencies": {
85
85
  "@echoes-io/books-generator": "^1.1.0",
86
86
  "@echoes-io/models": "^1.1.0",
87
- "@echoes-io/rag": "^1.3.0",
87
+ "@echoes-io/rag": "^1.4.0",
88
88
  "@echoes-io/tracker": "^1.1.0",
89
89
  "@echoes-io/utils": "^1.3.1",
90
90
  "@modelcontextprotocol/sdk": "^1.24.2"