@j0hanz/fs-context-mcp 2.7.0 → 2.7.2
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/tools/apply-patch.js +1 -1
- package/dist/tools/calculate-hash.js +1 -1
- package/dist/tools/create-directory.js +1 -1
- package/dist/tools/delete-file.js +1 -1
- package/dist/tools/diff-files.js +1 -1
- package/dist/tools/edit-file.js +1 -1
- package/dist/tools/list-directory.js +2 -2
- package/dist/tools/move-file.js +1 -1
- package/dist/tools/read-multiple.js +1 -1
- package/dist/tools/read.js +2 -2
- package/dist/tools/replace-in-files.js +2 -2
- package/dist/tools/roots.js +1 -1
- package/dist/tools/search-content.js +2 -2
- package/dist/tools/search-files.js +2 -2
- package/dist/tools/stat-many.js +1 -1
- package/dist/tools/stat.js +1 -1
- package/dist/tools/tree.js +2 -2
- package/dist/tools/write-file.js +1 -1
- package/package.json +1 -1
|
@@ -105,7 +105,7 @@ export function registerCalculateHashTool(server, options = {}) {
|
|
|
105
105
|
guard: options.isInitialized,
|
|
106
106
|
progressMessage: (args) => {
|
|
107
107
|
const name = path.basename(args.path);
|
|
108
|
-
return
|
|
108
|
+
return `⩩ calculate_hash: ${name}`;
|
|
109
109
|
},
|
|
110
110
|
}));
|
|
111
111
|
}
|
|
@@ -37,6 +37,6 @@ export function registerCreateDirectoryTool(server, options = {}) {
|
|
|
37
37
|
}, (error) => buildToolErrorResponse(error, ErrorCode.E_UNKNOWN, args.path)), { path: args.path });
|
|
38
38
|
server.registerTool('mkdir', withDefaultIcons({ ...CREATE_DIRECTORY_TOOL }, options.iconInfo), wrapToolHandler(handler, {
|
|
39
39
|
guard: options.isInitialized,
|
|
40
|
-
progressMessage: (args) =>
|
|
40
|
+
progressMessage: (args) => `✚ mkdir: ${path.basename(args.path)}`,
|
|
41
41
|
}));
|
|
42
42
|
}
|
|
@@ -53,6 +53,6 @@ export function registerDeleteFileTool(server, options = {}) {
|
|
|
53
53
|
}), { path: args.path });
|
|
54
54
|
server.registerTool('rm', withDefaultIcons({ ...DELETE_FILE_TOOL }, options.iconInfo), wrapToolHandler(handler, {
|
|
55
55
|
guard: options.isInitialized,
|
|
56
|
-
progressMessage: (args) =>
|
|
56
|
+
progressMessage: (args) => `✘ rm: ${path.basename(args.path)}`,
|
|
57
57
|
}));
|
|
58
58
|
}
|
package/dist/tools/diff-files.js
CHANGED
|
@@ -72,7 +72,7 @@ export function registerDiffFilesTool(server, options = {}) {
|
|
|
72
72
|
progressMessage: (args) => {
|
|
73
73
|
const name1 = path.basename(args.original);
|
|
74
74
|
const name2 = path.basename(args.modified);
|
|
75
|
-
return
|
|
75
|
+
return `⟺ diff_files: ${name1} ↔ ${name2}`;
|
|
76
76
|
},
|
|
77
77
|
}));
|
|
78
78
|
}
|
package/dist/tools/edit-file.js
CHANGED
|
@@ -62,7 +62,7 @@ export function registerEditFileTool(server, options = {}) {
|
|
|
62
62
|
guard: options.isInitialized,
|
|
63
63
|
progressMessage: (args) => {
|
|
64
64
|
const name = path.basename(args.path);
|
|
65
|
-
return
|
|
65
|
+
return `✎ edit: ${name} → ${args.edits.length} edits`;
|
|
66
66
|
},
|
|
67
67
|
}));
|
|
68
68
|
}
|
|
@@ -99,9 +99,9 @@ export function registerListDirectoryTool(server, options = {}) {
|
|
|
99
99
|
guard: options.isInitialized,
|
|
100
100
|
progressMessage: (args) => {
|
|
101
101
|
if (args.path) {
|
|
102
|
-
return
|
|
102
|
+
return `≣ ls: ${path.basename(args.path)}`;
|
|
103
103
|
}
|
|
104
|
-
return 'ls';
|
|
104
|
+
return '≣ ls';
|
|
105
105
|
},
|
|
106
106
|
}));
|
|
107
107
|
}
|
package/dist/tools/move-file.js
CHANGED
|
@@ -53,6 +53,6 @@ export function registerMoveFileTool(server, options = {}) {
|
|
|
53
53
|
}, (error) => buildToolErrorResponse(error, ErrorCode.E_UNKNOWN, args.source)), { path: args.source });
|
|
54
54
|
server.registerTool('mv', withDefaultIcons({ ...MOVE_FILE_TOOL }, options.iconInfo), wrapToolHandler(handler, {
|
|
55
55
|
guard: options.isInitialized,
|
|
56
|
-
progressMessage: (args) =>
|
|
56
|
+
progressMessage: (args) => `➔ mv: ${path.basename(args.source)} -> ${path.basename(args.destination)}`,
|
|
57
57
|
}));
|
|
58
58
|
}
|
|
@@ -107,7 +107,7 @@ export function registerReadMultipleFilesTool(server, options = {}) {
|
|
|
107
107
|
};
|
|
108
108
|
const wrappedHandler = wrapToolHandler(handler, {
|
|
109
109
|
guard: options.isInitialized,
|
|
110
|
-
progressMessage: (args) =>
|
|
110
|
+
progressMessage: (args) => `🗐 read_many: ${args.paths.length} files`,
|
|
111
111
|
});
|
|
112
112
|
const taskOptions = options.isInitialized
|
|
113
113
|
? { guard: options.isInitialized }
|
package/dist/tools/read.js
CHANGED
|
@@ -93,9 +93,9 @@ export function registerReadFileTool(server, options = {}) {
|
|
|
93
93
|
const name = path.basename(args.path);
|
|
94
94
|
if (args.startLine !== undefined) {
|
|
95
95
|
const end = args.endLine ?? '…';
|
|
96
|
-
return
|
|
96
|
+
return `🕮 read: ${name} → ${args.startLine}-${end}`;
|
|
97
97
|
}
|
|
98
|
-
return
|
|
98
|
+
return `🕮 read: ${name}`;
|
|
99
99
|
},
|
|
100
100
|
}));
|
|
101
101
|
}
|
|
@@ -176,7 +176,7 @@ export function registerSearchAndReplaceTool(server, options = {}) {
|
|
|
176
176
|
const handler = (args, extra) => withToolDiagnostics('search_and_replace', () => withToolErrorHandling(async () => {
|
|
177
177
|
notifyProgress(extra, {
|
|
178
178
|
current: 0,
|
|
179
|
-
message:
|
|
179
|
+
message: `⟳ search_and_replace: ${args.filePattern}`,
|
|
180
180
|
});
|
|
181
181
|
const { signal, cleanup } = createTimedAbortSignal(extra.signal);
|
|
182
182
|
try {
|
|
@@ -185,7 +185,7 @@ export function registerSearchAndReplaceTool(server, options = {}) {
|
|
|
185
185
|
const finalCurrent = (sc.processedFiles ?? 0) + 1;
|
|
186
186
|
notifyProgress(extra, {
|
|
187
187
|
current: finalCurrent,
|
|
188
|
-
message:
|
|
188
|
+
message: `⟳ search_and_replace: ${args.filePattern} → ${String(sc.filesChanged ?? 0)} files`,
|
|
189
189
|
});
|
|
190
190
|
return result;
|
|
191
191
|
}
|
package/dist/tools/roots.js
CHANGED
|
@@ -38,6 +38,6 @@ export function registerListAllowedDirectoriesTool(server, options = {}) {
|
|
|
38
38
|
const handler = () => withToolErrorHandling(() => withToolDiagnostics('roots', () => Promise.resolve(handleListAllowedDirectories())), (error) => buildToolErrorResponse(error, ErrorCode.E_UNKNOWN));
|
|
39
39
|
server.registerTool('roots', withDefaultIcons({ ...LIST_ALLOWED_DIRECTORIES_TOOL }, options.iconInfo), wrapToolHandler(handler, {
|
|
40
40
|
guard: options.isInitialized,
|
|
41
|
-
progressMessage: () => 'roots',
|
|
41
|
+
progressMessage: () => '☗ roots',
|
|
42
42
|
}));
|
|
43
43
|
}
|
|
@@ -169,7 +169,7 @@ export function registerSearchContentTool(server, options = {}) {
|
|
|
169
169
|
const normalizedArgs = SearchContentInputSchema.parse(args);
|
|
170
170
|
notifyProgress(extra, {
|
|
171
171
|
current: 0,
|
|
172
|
-
message:
|
|
172
|
+
message: `⌕ grep: ${normalizedArgs.pattern}`,
|
|
173
173
|
});
|
|
174
174
|
const result = await handleSearchContent(normalizedArgs, extra.signal, options.resourceStore, createProgressReporter(extra));
|
|
175
175
|
const sc = result.structuredContent;
|
|
@@ -177,7 +177,7 @@ export function registerSearchContentTool(server, options = {}) {
|
|
|
177
177
|
const finalCurrent = (sc.filesScanned ?? 0) + 1;
|
|
178
178
|
notifyProgress(extra, {
|
|
179
179
|
current: finalCurrent,
|
|
180
|
-
message:
|
|
180
|
+
message: `⌕ grep: ${normalizedArgs.pattern} → ${suffix}`,
|
|
181
181
|
});
|
|
182
182
|
return result;
|
|
183
183
|
}, (error) => buildToolErrorResponse(error, ErrorCode.E_UNKNOWN, args.path ?? '.')), { path: args.path ?? '.' });
|
|
@@ -82,7 +82,7 @@ export function registerSearchFilesTool(server, options = {}) {
|
|
|
82
82
|
const handler = (args, extra) => withToolDiagnostics('find', () => withToolErrorHandling(async () => {
|
|
83
83
|
notifyProgress(extra, {
|
|
84
84
|
current: 0,
|
|
85
|
-
message:
|
|
85
|
+
message: `⌕ find: ${args.pattern}`,
|
|
86
86
|
});
|
|
87
87
|
const { signal, cleanup } = createTimedAbortSignal(extra.signal, DEFAULT_SEARCH_TIMEOUT_MS);
|
|
88
88
|
try {
|
|
@@ -94,7 +94,7 @@ export function registerSearchFilesTool(server, options = {}) {
|
|
|
94
94
|
const finalCurrent = (sc.filesScanned ?? 0) + 1;
|
|
95
95
|
notifyProgress(extra, {
|
|
96
96
|
current: finalCurrent,
|
|
97
|
-
message:
|
|
97
|
+
message: `⌕ find: ${args.pattern} → ${suffix}`,
|
|
98
98
|
});
|
|
99
99
|
return result;
|
|
100
100
|
}
|
package/dist/tools/stat-many.js
CHANGED
|
@@ -87,7 +87,7 @@ export function registerGetMultipleFileInfoTool(server, options = {}) {
|
|
|
87
87
|
};
|
|
88
88
|
const wrappedHandler = wrapToolHandler(handler, {
|
|
89
89
|
guard: options.isInitialized,
|
|
90
|
-
progressMessage: (args) =>
|
|
90
|
+
progressMessage: (args) => `ⓘ+ stat_many: ${args.paths.length} paths`,
|
|
91
91
|
});
|
|
92
92
|
const taskOptions = options.isInitialized
|
|
93
93
|
? { guard: options.isInitialized }
|
package/dist/tools/stat.js
CHANGED
|
@@ -74,6 +74,6 @@ export function registerGetFileInfoTool(server, options = {}) {
|
|
|
74
74
|
}, (error) => buildToolErrorResponse(error, ErrorCode.E_NOT_FOUND, args.path)), { path: args.path });
|
|
75
75
|
server.registerTool('stat', withDefaultIcons({ ...GET_FILE_INFO_TOOL }, options.iconInfo), wrapToolHandler(handler, {
|
|
76
76
|
guard: options.isInitialized,
|
|
77
|
-
progressMessage: (args) =>
|
|
77
|
+
progressMessage: (args) => `ⓘ stat: ${path.basename(args.path)}`,
|
|
78
78
|
}));
|
|
79
79
|
}
|
package/dist/tools/tree.js
CHANGED
|
@@ -58,9 +58,9 @@ export function registerTreeTool(server, options = {}) {
|
|
|
58
58
|
guard: options.isInitialized,
|
|
59
59
|
progressMessage: (args) => {
|
|
60
60
|
if (args.path) {
|
|
61
|
-
return
|
|
61
|
+
return `⊨ tree: ${path.basename(args.path)}`;
|
|
62
62
|
}
|
|
63
|
-
return 'tree';
|
|
63
|
+
return '⊨ tree';
|
|
64
64
|
},
|
|
65
65
|
});
|
|
66
66
|
const taskOptions = options.isInitialized
|
package/dist/tools/write-file.js
CHANGED
|
@@ -41,6 +41,6 @@ export function registerWriteFileTool(server, options = {}) {
|
|
|
41
41
|
}, (error) => buildToolErrorResponse(error, ErrorCode.E_UNKNOWN, args.path)), { path: args.path });
|
|
42
42
|
server.registerTool('write', withDefaultIcons({ ...WRITE_FILE_TOOL }, options.iconInfo), wrapToolHandler(handler, {
|
|
43
43
|
guard: options.isInitialized,
|
|
44
|
-
progressMessage: (args) =>
|
|
44
|
+
progressMessage: (args) => `✎ write: ${path.basename(args.path)}`,
|
|
45
45
|
}));
|
|
46
46
|
}
|