We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 910557c commit 5475193Copy full SHA for 5475193
src/seclab_taskflows/mcp_servers/local_file_viewer.py
@@ -161,7 +161,7 @@ async def list_files(
161
return f"Invalid {owner} and {repo}. Check that the input is correct or try to fetch the repo from gh first."
162
content = _list_files(source_path, path)
163
if len(content) > FILE_LIMIT_FOR_LIST_FILES:
164
- return f"Too many files to display in {owner}/{repo} at path {path} ({len(content)} files). Try use `list_files_non_recursive` instead."
+ return f"Too many files to display in {owner}/{repo} at path {path} ({len(content)} files). Try using `list_files_non_recursive` instead."
165
return json.dumps(content, indent=2)
166
167
@mcp.tool()
0 commit comments