safeOutputScriptFilename returns the .cjs filename for a normalized safe output script name.
(normalizedName string)
| 122 | |
| 123 | // safeOutputScriptFilename returns the .cjs filename for a normalized safe output script name. |
| 124 | func safeOutputScriptFilename(normalizedName string) string { |
| 125 | return "safe_output_script_" + normalizedName + ".cjs" |
| 126 | } |
| 127 | |
| 128 | // generateCustomScriptToolDefinition creates an MCP tool definition for a custom safe-output script. |
| 129 | // Returns a map representing the tool definition in MCP format with name, description, and inputSchema. |
no outgoing calls
no test coverage detected