We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8b8163 commit 7446920Copy full SHA for 7446920
index.js
@@ -112,7 +112,11 @@ async function ensureServer() {
112
return;
113
}
114
115
- throw new Error("Vector memory server failed to start within 30s");
+ throw new Error(
116
+ `Vector memory server failed to start — port ${PORT} may be in use by another service. ` +
117
+ `Fix: set VECTOR_MEMORY_PORT to an unused port in ~/.copilot/mcp-config.json — ` +
118
+ `see https://github.com/BrainSlugs83/GithubCopilotCLI-VectorMemoryMCP#environment-variables`
119
+ );
120
121
122
// --- HTTP client helper ---
0 commit comments