await top-level runServer

This commit is contained in:
David Blass
2025-10-13 13:44:29 -04:00
parent 458bfe18a0
commit 2296060d04
3 changed files with 9 additions and 10 deletions
+1 -9
View File
@@ -6,7 +6,6 @@ import { Octokit } from "@octokit/rest";
import { type } from "arktype";
import { z } from "zod";
import { resolveRepoContext } from "../utils/repo-context.ts";
import { writeFileSync } from "fs";
const server = new McpServer({
name: "Minimal GitHub Issue Comment Server",
@@ -93,11 +92,4 @@ async function runServer() {
});
}
runServer().catch((error) => {
// Write error to file for GitHub Actions visibility
try {
writeFileSync('/tmp/mcp-error.log', `${new Date().toISOString()} MCP Server Error: ${error.message}\nStack: ${error.stack}\n`, { flag: 'a' });
} catch {}
console.error('MCP Server Error:', error);
process.exit(1);
});
await runServer();