@echoes-io/mcp-server 1.9.0 → 2.0.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 +2 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -65,8 +65,9 @@ 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 (`e5-small`, `embeddinggemma`, `gemini`, or `openai`). Default: `e5-small`
69
69
  - `ECHOES_GEMINI_API_KEY`: Required if using `gemini` provider
70
+ - `ECHOES_OPENAI_API_KEY`: Required if using `openai` provider
70
71
 
71
72
  ## Execution Modes
72
73
 
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.0",
4
+ "version": "2.0.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",
@@ -31,7 +31,7 @@
31
31
  "lib/**/*.{d.ts,js}"
32
32
  ],
33
33
  "engines": {
34
- "node": ">= 20"
34
+ "node": ">= 20.3"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public",
@@ -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.2.0",
87
+ "@echoes-io/rag": "^1.3.0",
88
88
  "@echoes-io/tracker": "^1.1.0",
89
89
  "@echoes-io/utils": "^1.3.1",
90
90
  "@modelcontextprotocol/sdk": "^1.24.2"