add pr and issue creation support

This commit is contained in:
David Blass
2025-10-23 10:24:32 -04:00
parent 9fb6135fd2
commit 0368512b9e
6 changed files with 145 additions and 3 deletions
+3 -1
View File
@@ -2,6 +2,8 @@
// Minimal GitHub Issue Comment MCP Server
import { FastMCP } from "fastmcp";
import { CommentTool } from "./comment.ts";
import { IssueTool } from "./issue.ts";
import { PullRequestTool } from "./pr.ts";
import { addTools } from "./shared.ts";
const server = new FastMCP({
@@ -9,6 +11,6 @@ const server = new FastMCP({
version: "0.0.1",
});
addTools(server, [CommentTool]);
addTools(server, [CommentTool, IssueTool, PullRequestTool]);
server.start();