From bb8aa86a42df1b34c2402c1f7c3e432ade678a9e Mon Sep 17 00:00:00 2001 From: Enno Gelhaus Date: Thu, 18 Sep 2025 19:57:18 +0200 Subject: [PATCH] Integrate Sentry with McpServer initialization --- libraries/nestjs-libraries/src/mcp/mcp.settings.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/nestjs-libraries/src/mcp/mcp.settings.ts b/libraries/nestjs-libraries/src/mcp/mcp.settings.ts index 377dd254..30066023 100644 --- a/libraries/nestjs-libraries/src/mcp/mcp.settings.ts +++ b/libraries/nestjs-libraries/src/mcp/mcp.settings.ts @@ -1,11 +1,11 @@ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { MainMcp } from '@gitroom/backend/mcp/main.mcp'; import { socialIntegrationList } from '@gitroom/nestjs-libraries/integrations/integration.manager'; - +import * as Sentry from '@sentry/nestjs'; export class McpSettings { private _server: McpServer; createServer(organization: string, service: MainMcp) { - this._server = new McpServer( + this._server = Sentry.wrapMcpServerWithSentry(new McpServer( { name: 'Postiz', version: '2.0.0', @@ -17,7 +17,7 @@ export class McpSettings { ', ' )} to schedule you need to have the providerId (you can get it from POSTIZ_PROVIDERS_LIST), user need to specify the schedule date (or now), text, you also can send base64 images and text for the comments. When you get POSTIZ_PROVIDERS_LIST, always display all the options to the user`, } - ); + )); for (const usePrompt of Reflect.getMetadata( 'MCP_PROMPT',