smart-coding-mcp 1.2.3 → 1.2.4

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.
@@ -16,7 +16,7 @@ export class CacheClearer {
16
16
 
17
17
  export function getToolDefinition() {
18
18
  return {
19
- name: "clear_cache",
19
+ name: "c_clear_cache",
20
20
  description: "Clears the embeddings cache, forcing a complete reindex on next search or manual index operation. Useful when encountering cache corruption or after major codebase changes.",
21
21
  inputSchema: {
22
22
  type: "object",
@@ -73,7 +73,7 @@ export class HybridSearch {
73
73
  // MCP Tool definition for this feature
74
74
  export function getToolDefinition(config) {
75
75
  return {
76
- name: "semantic_search",
76
+ name: "a_semantic_search",
77
77
  description: "Performs intelligent hybrid code search combining semantic understanding with exact text matching. Ideal for finding code by meaning (e.g., 'authentication logic', 'database queries') even with typos or variations. Returns the most relevant code snippets with file locations and line numbers.",
78
78
  inputSchema: {
79
79
  type: "object",
@@ -166,7 +166,7 @@ export class CodebaseIndexer {
166
166
  // MCP Tool definition for this feature
167
167
  export function getToolDefinition() {
168
168
  return {
169
- name: "index_codebase",
169
+ name: "b_index_codebase",
170
170
  description: "Manually trigger a full reindex of the codebase. This will scan all files and update the embeddings cache. Useful after large code changes or if the index seems out of date.",
171
171
  inputSchema: {
172
172
  type: "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smart-coding-mcp",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
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",