smart-coding-mcp 1.0.1 → 1.1.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/index.js +5 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -99,8 +99,11 @@ async function initialize() {
99
99
  features[1].instance = hybridSearch;
100
100
  features[2].instance = cacheClearer;
101
101
 
102
- // Index codebase
103
- await indexer.initialize();
102
+ // Start indexing in background (non-blocking)
103
+ console.error("[Server] Starting background indexing...");
104
+ indexer.initialize().catch(err => {
105
+ console.error("[Server] Background indexing error:", err.message);
106
+ });
104
107
  }
105
108
 
106
109
  // Setup MCP server
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smart-coding-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "An extensible MCP server that enhances coding productivity with AI-powered features including semantic code search, intelligent indexing, and more, using local LLMs",
5
5
  "type": "module",
6
6
  "main": "index.js",