@j0hanz/filesystem-mcp 1.5.3 → 1.5.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.
@@ -14,7 +14,7 @@ export const READ_MULTIPLE_FILES_TOOL = {
14
14
  inputSchema: ReadMultipleFilesInputSchema,
15
15
  outputSchema: ReadMultipleFilesOutputSchema,
16
16
  annotations: READ_ONLY_TOOL_ANNOTATIONS,
17
- taskSupport: 'required',
17
+ taskSupport: 'optional',
18
18
  nuances: ['Total read budget is capped by `MAX_READ_MANY_TOTAL_SIZE`.'],
19
19
  gotchas: [
20
20
  'Per-file `truncationReason` can be `head`, `range`, or `externalized`.',
@@ -23,7 +23,7 @@ export const SEARCH_AND_REPLACE_TOOL = {
23
23
  inputSchema: SearchAndReplaceInputSchema,
24
24
  outputSchema: SearchAndReplaceOutputSchema,
25
25
  annotations: DESTRUCTIVE_WRITE_TOOL_ANNOTATIONS,
26
- taskSupport: 'required',
26
+ taskSupport: 'optional',
27
27
  gotchas: [
28
28
  'Literal mode is default; `isRegex=true` enables RE2 + capture replacements (`$1`, `$2`).',
29
29
  ],
@@ -26,7 +26,7 @@ export const SEARCH_CONTENT_TOOL = {
26
26
  gotchas: [
27
27
  'Skips binary and oversized files silently — check file type with `stat` if no matches appear.',
28
28
  ],
29
- taskSupport: 'required',
29
+ taskSupport: 'optional',
30
30
  };
31
31
  function assertValidRegexPattern(pattern) {
32
32
  try {
@@ -38,7 +38,7 @@ export const SEARCH_FILES_TOOL = {
38
38
  'Respects `.gitignore` unless `includeIgnored=true`.',
39
39
  'Returns relative paths plus metadata; may truncate.',
40
40
  ],
41
- taskSupport: 'required',
41
+ taskSupport: 'optional',
42
42
  };
43
43
  async function handleSearchFiles(args, signal, onProgress) {
44
44
  const basePath = resolvePathOrRoot(args.path);
@@ -13,7 +13,7 @@ export const GET_MULTIPLE_FILE_INFO_TOOL = {
13
13
  inputSchema: GetMultipleFileInfoInputSchema,
14
14
  outputSchema: GetMultipleFileInfoOutputSchema,
15
15
  annotations: READ_ONLY_TOOL_ANNOTATIONS,
16
- taskSupport: 'required',
16
+ taskSupport: 'optional',
17
17
  nuances: ['Use before read/search when file size/type uncertainty exists.'],
18
18
  };
19
19
  function formatFileInfoDetail(info) {
@@ -14,7 +14,7 @@ export const TREE_TOOL = {
14
14
  inputSchema: TreeInputSchema,
15
15
  outputSchema: TreeOutputSchema,
16
16
  annotations: READ_ONLY_TOOL_ANNOTATIONS,
17
- taskSupport: 'required',
17
+ taskSupport: 'optional',
18
18
  gotchas: ['`maxDepth=0` returns only the root node.'],
19
19
  };
20
20
  async function handleTree(args, signal, onProgress) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@j0hanz/filesystem-mcp",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "mcpName": "io.github.j0hanz/filesystem-mcp",
5
5
  "description": "MCP Server that enables LLMs to interact with the local filesystem.",
6
6
  "type": "module",