Files
shockbot/mcp/server.ts
T
2025-10-23 10:24:32 -04:00

17 lines
421 B
JavaScript

#!/usr/bin/env node
// 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({
name: "gh-pullfrog",
version: "0.0.1",
});
addTools(server, [CommentTool, IssueTool, PullRequestTool]);
server.start();