From 5e93e273f89911ae42fd6ff320e6ddc6aefe63b0 Mon Sep 17 00:00:00 2001 From: Grant McLendon Date: Tue, 1 Apr 2025 16:54:29 -0400 Subject: [PATCH] chore: revert logging change --- index.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/index.ts b/index.ts index 5c56d4b..da502e2 100644 --- a/index.ts +++ b/index.ts @@ -2161,15 +2161,6 @@ async function runServer() { const transport = new StdioServerTransport(); await server.connect(transport); console.error("GitLab MCP Server running on stdio"); - - if (GITLAB_READ_ONLY_MODE) { - console.error("⚠️ Server running in READ-ONLY mode - write operations are disabled"); - console.error(`Available tools: ${readOnlyTools.length}/${allTools.length}`); - } - - // For stdio transport, the server is effectively running after connect. - // No need to call server.start() or return a URL. - } catch (error) { console.error("Error initializing server:", error); process.exit(1);