This commit is contained in:
2026-07-06 10:55:06 +03:00
parent 333a4c592d
commit 66087d5797
3 changed files with 72 additions and 2 deletions
+2 -2
View File
@@ -119,12 +119,12 @@ def _parse_args(argv=None) -> argparse.Namespace:
parser.add_argument(
"--enabled-tools",
default=None,
help="Comma-separated whitelist of tool names to expose",
help="Comma-separated whitelist of tool names or group aliases (read-only, write-only) to expose",
)
parser.add_argument(
"--disabled-tools",
default=None,
help="Comma-separated blacklist of tool names to hide",
help="Comma-separated blacklist of tool names or group aliases (read-only, write-only) to hide",
)
return parser.parse_args(argv)