@j0hanz/fs-context-mcp 2.4.2 → 2.4.3

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.
@@ -97,6 +97,6 @@ export function registerListDirectoryTool(server, options = {}) {
97
97
  : {}),
98
98
  }, wrapToolHandler(handler, {
99
99
  guard: options.isInitialized,
100
- progressMessage: (args) => `ls \`${args.path ?? '.'}\``,
100
+ progressMessage: (args) => `ls | ${args.path ?? '.'}`,
101
101
  }));
102
102
  }
@@ -121,6 +121,6 @@ export function registerReadMultipleFilesTool(server, options = {}) {
121
121
  : {}),
122
122
  }, wrapToolHandler(handler, {
123
123
  guard: options.isInitialized,
124
- progressMessage: (args) => `read_many \`${args.paths.length}\` files`,
124
+ progressMessage: (args) => `read_many | ${args.paths.length} files`,
125
125
  }));
126
126
  }
@@ -104,6 +104,6 @@ export function registerReadFileTool(server, options = {}) {
104
104
  : {}),
105
105
  }, wrapToolHandler(handler, {
106
106
  guard: options.isInitialized,
107
- progressMessage: (args) => `read \`${args.path}\``,
107
+ progressMessage: (args) => `read | ${args.path}`,
108
108
  }));
109
109
  }
@@ -151,6 +151,6 @@ export function registerSearchContentTool(server, options = {}) {
151
151
  : {}),
152
152
  }, wrapToolHandler(handler, {
153
153
  guard: options.isInitialized,
154
- progressMessage: (args) => `grep \`${args.pattern}\``,
154
+ progressMessage: (args) => `grep | ${args.pattern}`,
155
155
  }));
156
156
  }
@@ -91,6 +91,6 @@ export function registerSearchFilesTool(server, options = {}) {
91
91
  : {}),
92
92
  }, wrapToolHandler(handler, {
93
93
  guard: options.isInitialized,
94
- progressMessage: (args) => `find \`${args.pattern}\``,
94
+ progressMessage: (args) => `find | ${args.pattern}`,
95
95
  }));
96
96
  }
@@ -101,6 +101,6 @@ export function registerGetMultipleFileInfoTool(server, options = {}) {
101
101
  : {}),
102
102
  }, wrapToolHandler(handler, {
103
103
  guard: options.isInitialized,
104
- progressMessage: (args) => `stat_many \`${args.paths.length}\` paths`,
104
+ progressMessage: (args) => `stat_many ${args.paths.length} paths`,
105
105
  }));
106
106
  }
@@ -88,6 +88,6 @@ export function registerGetFileInfoTool(server, options = {}) {
88
88
  : {}),
89
89
  }, wrapToolHandler(handler, {
90
90
  guard: options.isInitialized,
91
- progressMessage: (args) => `stat \`${args.path}\``,
91
+ progressMessage: (args) => `stat | ${args.path}`,
92
92
  }));
93
93
  }
@@ -68,6 +68,6 @@ export function registerTreeTool(server, options = {}) {
68
68
  : {}),
69
69
  }, wrapToolHandler(handler, {
70
70
  guard: options.isInitialized,
71
- progressMessage: (args) => `tree \`${args.path ?? '.'}\``,
71
+ progressMessage: (args) => `tree | ${args.path ?? '.'}`,
72
72
  }));
73
73
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@j0hanz/fs-context-mcp",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "mcpName": "io.github.j0hanz/fs-context",
5
5
  "description": "🔍 Read-only MCP server for secure filesystem exploration, searching, and analysis",
6
6
  "type": "module",