@echoes-io/mcp-server 2.0.0 → 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.
- package/README.md +4 -5
- 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": "
|
|
60
|
+
"ECHOES_RAG_PROVIDER": "qwen3"
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
}
|
|
@@ -65,9 +65,8 @@ Then configure:
|
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
**Optional RAG Configuration:**
|
|
68
|
-
- `ECHOES_RAG_PROVIDER`: Embedding provider (`
|
|
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
|
-
- `ECHOES_OPENAI_API_KEY`: Required if using `openai` provider
|
|
71
70
|
|
|
72
71
|
## Execution Modes
|
|
73
72
|
|
|
@@ -114,11 +113,11 @@ echoes-io/
|
|
|
114
113
|
.github/ # Multi-timeline mode runs from here
|
|
115
114
|
timeline-eros/ # Private timeline repo
|
|
116
115
|
tracker.db # Timeline-specific database
|
|
117
|
-
|
|
116
|
+
lancedb/ # Timeline-specific RAG vector database
|
|
118
117
|
content/...
|
|
119
118
|
timeline-other/ # Another private timeline
|
|
120
119
|
tracker.db
|
|
121
|
-
|
|
120
|
+
lancedb/
|
|
122
121
|
content/...
|
|
123
122
|
```
|
|
124
123
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@echoes-io/mcp-server",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
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.
|
|
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"
|