MCPcopy Index your code
hub / github.com/bugy/script-server / get_secure_command

Method get_secure_command

src/execution/executor.py:133–140  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

131 return result
132
133 def get_secure_command(self):
134 audit_script_args = build_command_args(
135 {name: v.get_secure_value() for name, v in self._parameter_values.items()},
136 self.config)
137 audit_script_args = [str(a) for a in audit_script_args]
138
139 command = self.script_base_command + audit_script_args
140 return ' '.join(command)
141
142 def get_anonymized_output_stream(self):
143 return self.protected_output_stream

Callers 2

get_secure_commandMethod · 0.95
start_scriptMethod · 0.95

Calls 2

build_command_argsFunction · 0.85
get_secure_valueMethod · 0.80

Tested by 1

get_secure_commandMethod · 0.76