@echoes-io/mcp-server 2.0.0 → 2.2.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/lib/server.js +6 -6
- 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/lib/server.js
CHANGED
|
@@ -215,7 +215,7 @@ export async function runServer() {
|
|
|
215
215
|
const tracker = new Tracker(':memory:');
|
|
216
216
|
await tracker.init();
|
|
217
217
|
const rag = new RAGSystem({
|
|
218
|
-
provider: '
|
|
218
|
+
provider: 'qwen3',
|
|
219
219
|
dbPath: ':memory:',
|
|
220
220
|
});
|
|
221
221
|
timelines.set('test', { tracker, rag, contentPath: './test-content' });
|
|
@@ -229,10 +229,10 @@ export async function runServer() {
|
|
|
229
229
|
throw new Error(`No content directory found in ${cwd}`);
|
|
230
230
|
}
|
|
231
231
|
const trackerPath = join(cwd, 'tracker.db');
|
|
232
|
-
const ragPath = join(cwd, '
|
|
232
|
+
const ragPath = join(cwd, 'lancedb');
|
|
233
233
|
const tracker = new Tracker(trackerPath);
|
|
234
234
|
await tracker.init();
|
|
235
|
-
const provider = (process.env.ECHOES_RAG_PROVIDER || '
|
|
235
|
+
const provider = (process.env.ECHOES_RAG_PROVIDER || 'qwen3');
|
|
236
236
|
const rag = new RAGSystem({
|
|
237
237
|
provider,
|
|
238
238
|
dbPath: ragPath,
|
|
@@ -249,7 +249,7 @@ export async function runServer() {
|
|
|
249
249
|
const tracker = new Tracker(':memory:');
|
|
250
250
|
await tracker.init();
|
|
251
251
|
const rag = new RAGSystem({
|
|
252
|
-
provider: '
|
|
252
|
+
provider: 'qwen3',
|
|
253
253
|
dbPath: ':memory:',
|
|
254
254
|
});
|
|
255
255
|
timelines.set('test', { tracker, rag, contentPath: './test-content' });
|
|
@@ -270,10 +270,10 @@ export async function runServer() {
|
|
|
270
270
|
continue;
|
|
271
271
|
}
|
|
272
272
|
const trackerPath = join(timelinePath, 'tracker.db');
|
|
273
|
-
const ragPath = join(timelinePath, '
|
|
273
|
+
const ragPath = join(timelinePath, 'lancedb');
|
|
274
274
|
const tracker = new Tracker(trackerPath);
|
|
275
275
|
await tracker.init();
|
|
276
|
-
const provider = (process.env.ECHOES_RAG_PROVIDER || '
|
|
276
|
+
const provider = (process.env.ECHOES_RAG_PROVIDER || 'qwen3');
|
|
277
277
|
const rag = new RAGSystem({
|
|
278
278
|
provider,
|
|
279
279
|
dbPath: ragPath,
|
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.2.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"
|