initial version of pr review tools

This commit is contained in:
David Blass
2025-10-30 10:52:01 -04:00
parent 2042a5bf98
commit 05fb2065b2
4 changed files with 84 additions and 2 deletions
+3 -1
View File
@@ -4,6 +4,8 @@ import { FastMCP } from "fastmcp";
import { CommentTool } from "./comment.ts";
import { IssueTool } from "./issue.ts";
import { PullRequestTool } from "./pr.ts";
import { ReviewTool } from "./review.ts";
import { PullRequestInfoTool } from "./prInfo.ts";
import { addTools } from "./shared.ts";
const server = new FastMCP({
@@ -11,6 +13,6 @@ const server = new FastMCP({
version: "0.0.1",
});
addTools(server, [CommentTool, IssueTool, PullRequestTool]);
addTools(server, [CommentTool, IssueTool, PullRequestTool, ReviewTool, PullRequestInfoTool]);
server.start();