@softerist/heuristic-mcp 2.1.6 → 2.1.7

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.
@@ -118,11 +118,11 @@ export async function register(filter = null) {
118
118
  console.log(`[Auto-Register] No compatible IDE configurations found to update.`);
119
119
  console.log(`[Auto-Register] Manual Config:\n${JSON.stringify({ mcpServers: { "heuristic-mcp": serverConfig } }, null, 2)}`);
120
120
  } else {
121
- // Friendly Banner
122
- console.log('\n\x1b[36m' + '='.repeat(60));
123
- console.log(' 🚀 Heuristic MCP Installed & Configured! ');
124
- console.log('='.repeat(60) + '\x1b[0m');
125
- console.log(`
121
+ // Friendly Banner (Using console.error to bypass npm stdout suppression)
122
+ console.error('\n\x1b[36m' + '='.repeat(60));
123
+ console.error(' 🚀 Heuristic MCP Installed & Configured! ');
124
+ console.error('='.repeat(60) + '\x1b[0m');
125
+ console.error(`
126
126
  \x1b[33mACTION REQUIRED:\x1b[0m
127
127
  1. \x1b[1mRestart your IDE\x1b[0m (or reload the window) to load the new config.
128
128
  2. The server will start automatically in the background.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softerist/heuristic-mcp",
3
- "version": "2.1.6",
3
+ "version": "2.1.7",
4
4
  "description": "An enhanced MCP server providing intelligent semantic code search with find-similar-code, recency ranking, and improved chunking. Fork of smart-coding-mcp.",
5
5
  "type": "module",
6
6
  "main": "index.js",