@echoes-io/mcp-server 2.1.0 → 3.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/lib/server.js +6 -6
  2. package/package.json +5 -4
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: 'e5-small',
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, 'rag.db');
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 || 'e5-small');
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: 'e5-small',
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, 'rag.db');
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 || 'e5-small');
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.1.0",
4
+ "version": "3.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",
@@ -83,10 +83,11 @@
83
83
  },
84
84
  "dependencies": {
85
85
  "@echoes-io/books-generator": "^1.1.0",
86
- "@echoes-io/models": "^1.1.0",
87
86
  "@echoes-io/rag": "^1.4.0",
88
87
  "@echoes-io/tracker": "^1.1.0",
89
- "@echoes-io/utils": "^1.3.1",
90
- "@modelcontextprotocol/sdk": "^1.24.2"
88
+ "@modelcontextprotocol/sdk": "^1.24.2",
89
+ "gray-matter": "^4.0.3",
90
+ "remove-markdown": "^0.6.2",
91
+ "zod": "^4.1.12"
91
92
  }
92
93
  }