@echoes-io/mcp-server 1.8.0 → 1.8.2

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 +2 -2
  2. package/package.json +2 -2
package/lib/server.js CHANGED
@@ -207,7 +207,7 @@ export async function runServer() {
207
207
  const isTest = process.env.NODE_ENV === 'test' || process.env.VITEST === 'true';
208
208
  const log = (...args) => {
209
209
  if (!isTest)
210
- log(...args);
210
+ console.error(...args);
211
211
  };
212
212
  log(`[DEBUG] Starting from: ${cwd}`);
213
213
  if (process.env.NODE_ENV === 'test') {
@@ -292,7 +292,7 @@ export async function runServer() {
292
292
  await server.connect(transport);
293
293
  log(`[DEBUG] Server ready with ${timelines.size} timeline(s)`);
294
294
  // Validate .github repo for prompts
295
- const { exists: githubExists, path: githubPath } = validateGitHubRepo();
295
+ const { exists: githubExists } = validateGitHubRepo();
296
296
  if (!githubExists) {
297
297
  log('⚠️ WARNING: .github repository not found');
298
298
  log(' Expected location: ../.github/.kiro/prompts/');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@echoes-io/mcp-server",
3
3
  "type": "module",
4
- "version": "1.8.0",
4
+ "version": "1.8.2",
5
5
  "description": "Model Context Protocol server for AI integration with Echoes storytelling platform",
6
6
  "scripts": {
7
7
  "dev": "tsx cli/index.ts",
@@ -86,7 +86,7 @@
86
86
  "@echoes-io/models": "^1.1.0",
87
87
  "@echoes-io/rag": "^1.2.0",
88
88
  "@echoes-io/tracker": "^1.1.0",
89
- "@echoes-io/utils": "^1.3.0",
89
+ "@echoes-io/utils": "^1.3.1",
90
90
  "@modelcontextprotocol/sdk": "^1.24.2"
91
91
  }
92
92
  }