add debug mcp tool for testing, fix transport issues

This commit is contained in:
Colin McDonnell
2025-11-25 17:07:40 -08:00
parent 106de07802
commit 4ff547f673
7 changed files with 67 additions and 6 deletions
+2
View File
@@ -9,6 +9,7 @@ import {
EditCommentTool,
UpdateWorkingCommentTool,
} from "./comment.ts";
import { DebugShellCommandTool } from "./debug.ts";
import { IssueTool } from "./issue.ts";
import { PullRequestTool } from "./pr.ts";
import { PullRequestInfoTool } from "./prInfo.ts";
@@ -35,6 +36,7 @@ addTools(server, [
GetReviewCommentsTool,
ListPullRequestReviewsTool,
GetCheckSuiteLogsTool,
DebugShellCommandTool,
]);
server.start();