You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: deferred server deps — proxy installs in seconds, not minutes
Move server-only dependencies (@huggingface/transformers, better-sqlite3,
sqlite-vec) out of package.json. The proxy now installs ~8 MB via npx
instead of 432 MB, completing the MCP handshake in < 3 seconds.
Server deps are installed to __dirname/.server/ on first use (one-time,
background). Subsequent launches find deps already cached. Version
tracking via .server/.version ensures upgrades re-install as needed.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copy file name to clipboardExpand all lines: package.json
+3-6Lines changed: 3 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "ghcp-cli-vector-memory-mcp",
3
-
"version": "1.4.0",
3
+
"version": "1.5.0",
4
4
"description": "MCP server that gives GitHub Copilot CLI persistent long-term memory via local semantic vector search. Install: npx -y ghcp-cli-vector-memory-mcp",
"postinstall": "node --input-type=module -e \"import('@huggingface/transformers').then(m=>m.pipeline('feature-extraction','Xenova/gte-small',{dtype:'q8'})).then(()=>console.log('✓ Embedding model ready')).catch(e=>console.error('⚠ Model download failed (will retry on first run):',e.message))\""
0 commit comments