Files
shockbot/mcp/server.ts
T
2025-10-15 17:24:29 -04:00

15 lines
334 B
JavaScript

#!/usr/bin/env node
// Minimal GitHub Issue Comment MCP Server
import { FastMCP } from "fastmcp";
import { CommentTool } from "./comment.ts";
import { addTools } from "./shared.ts";
const server = new FastMCP({
name: "Minimal GitHub Issue Comment Server",
version: "0.0.1",
});
addTools(server, [CommentTool]);
server.start();