@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.
- package/dist/index.js +3 -4
- 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.
|
|
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
|
-
.
|
|
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
|
|
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) }],
|