You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: enable --dump-dil by default for codeql_query_compile tool
Add dump-dil parameter to the codeql_query_compile tool inputSchema
and inject --dump-dil by default in registerCLITool handler unless
explicitly disabled via dump-dil: false or --no-dump-dil in
additionalArgs.
Includes server unit tests and client integration test improvements.
Agent-Logs-Url: https://github.com/advanced-security/codeql-development-mcp-server/sessions/7a489b70-8f73-406f-9a75-e8a15951cde2
Co-authored-by: data-douser <70299490+data-douser@users.noreply.github.com>
@@ -196066,6 +196079,7 @@ var codeqlQueryCompileTool = {
196066
196079
inputSchema: {
196067
196080
query: external_exports.string().describe("Path to the CodeQL query file (.ql)"),
196068
196081
database: external_exports.string().optional().describe("Path to the CodeQL database"),
196082
+
"dump-dil": external_exports.boolean().optional().describe("Print the optimized DIL intermediate representation to standard output while compiling. Enabled by default; pass false or --no-dump-dil to disable."),
196069
196083
library: external_exports.string().optional().describe("Path to query library"),
query: z.string().describe('Path to the CodeQL query file (.ql)'),
15
15
database: z.string().optional().describe('Path to the CodeQL database'),
16
+
'dump-dil': z.boolean().optional()
17
+
.describe('Print the optimized DIL intermediate representation to standard output while compiling. Enabled by default; pass false or --no-dump-dil to disable.'),
16
18
library: z.string().optional().describe('Path to query library'),
0 commit comments