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
Copy file name to clipboardExpand all lines: packages/cli-v3/src/mcp/tools.ts
+56-6Lines changed: 56 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -536,15 +536,22 @@ export function registerGetRunDetailsTool(context: McpContext) {
536
536
.describe("The branch to trigger the task in, only used for preview environments")
537
537
.optional(),
538
538
runId: z.string().describe("The ID of the run to get the details of, starts with run_"),
539
+
debugMode: z
540
+
.boolean()
541
+
.describe(
542
+
"Enable debug mode to get more detailed information about the run, including the entire trace (all logs and spans for the run and any child run). Set this to true if prompted to debug a run."
0 commit comments