From e3413ac8d80a6468a825fd294448139027b7f50b Mon Sep 17 00:00:00 2001 From: Nevo David Date: Fri, 17 Oct 2025 14:43:42 +0700 Subject: [PATCH] feat: no sse on copy --- apps/frontend/src/components/public-api/public.component.tsx | 2 +- .../src/chat/tools/integration.schedule.post.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/frontend/src/components/public-api/public.component.tsx b/apps/frontend/src/components/public-api/public.component.tsx index 2ee5a1f4..99728f96 100644 --- a/apps/frontend/src/components/public-api/public.component.tsx +++ b/apps/frontend/src/components/public-api/public.component.tsx @@ -19,7 +19,7 @@ export const PublicComponent = () => { }, [user]); const copyToClipboard2 = useCallback(() => { toaster.show('MCP copied to clipboard', 'success'); - copy(`${backendUrl}/mcp/` + user?.publicApi + '/sse'); + copy(`${backendUrl}/mcp/` + user?.publicApi); }, [user]); const t = useT(); diff --git a/libraries/nestjs-libraries/src/chat/tools/integration.schedule.post.ts b/libraries/nestjs-libraries/src/chat/tools/integration.schedule.post.ts index 6f658877..6db68d4c 100644 --- a/libraries/nestjs-libraries/src/chat/tools/integration.schedule.post.ts +++ b/libraries/nestjs-libraries/src/chat/tools/integration.schedule.post.ts @@ -103,7 +103,6 @@ If the tools return errors, you would need to rerun it with the right parameters execute: async (args, options) => { const { context, runtimeContext } = args; checkAuth(args, options); - console.log(JSON.stringify(context, null, 2)); const organizationId = JSON.parse( // @ts-ignore runtimeContext.get('organization') as string