@grec0/memory-bank-mcp 0.0.5 → 0.0.6

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/dist/index.js +3 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -159,17 +159,16 @@ server.tool("memorybank_get_stats", "Obtiene estadísticas del Memory Bank: arch
159
159
  };
160
160
  });
161
161
  // Tool: Analyze Coverage
162
- server.tool("memorybank_analyze_coverage", "Analiza la cobertura de indexación del proyecto. Muestra qué carpetas/archivos están indexados, cuáles no, y cuáles tienen cambios pendientes. El projectId es OBLIGATORIO. NOTA: Puede tardar en workspaces grandes", {
162
+ server.tool("memorybank_analyze_coverage", "Analiza la cobertura de indexación del proyecto. Muestra qué carpetas/archivos están indexados, cuáles no, y cuáles tienen cambios pendientes. OBLIGATORIO: projectId y path (ruta absoluta del workspace). NOTA: Puede tardar en workspaces grandes", {
163
163
  projectId: z
164
164
  .string()
165
165
  .describe("Identificador del proyecto a analizar (OBLIGATORIO)"),
166
166
  path: z
167
167
  .string()
168
- .optional()
169
- .describe("Ruta específica a analizar (por defecto: raíz del workspace)"),
168
+ .describe("Ruta absoluta del workspace a analizar (OBLIGATORIO). Ejemplo: 'C:/workspaces/mi-proyecto'"),
170
169
  }, async (args) => {
171
170
  try {
172
- const targetPath = args.path || workspaceRoot;
171
+ const targetPath = args.path;
173
172
  const result = await analyzeCoverage(indexManager, vectorStore, targetPath, args.projectId);
174
173
  return {
175
174
  content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grec0/memory-bank-mcp",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "MCP server for semantic code indexing with Memory Bank - AI-powered codebase understanding",
5
5
  "license": "MIT",
6
6
  "author": "@grec0",