From cbcf87f50d965b3af36002c6f74b614bd065afde Mon Sep 17 00:00:00 2001 From: David Blass Date: Thu, 20 Nov 2025 14:52:42 -0500 Subject: [PATCH] fix mcp name --- mcp/server.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mcp/server.ts b/mcp/server.ts index 96e68e0..3fe2c8e 100644 --- a/mcp/server.ts +++ b/mcp/server.ts @@ -1,4 +1,5 @@ import { FastMCP } from "fastmcp"; +import { ghPullfrogMcpName } from "../external.ts"; import { GetCheckSuiteLogsTool } from "./checkSuite.ts"; import { CreateCommentTool, @@ -6,7 +7,6 @@ import { EditCommentTool, UpdateWorkingCommentTool, } from "./comment.ts"; -// import { ListFilesTool } from "./files.ts"; import { IssueTool } from "./issue.ts"; import { PullRequestTool } from "./pr.ts"; import { PullRequestInfoTool } from "./prInfo.ts"; @@ -16,7 +16,7 @@ import { SelectModeTool } from "./selectMode.ts"; import { addTools } from "./shared.ts"; const server = new FastMCP({ - name: "gh-pullfrog", + name: ghPullfrogMcpName, version: "0.0.1", });