We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f573506 commit b48a065Copy full SHA for b48a065
packages/core/src/integrations/mcp-server/transport.ts
@@ -80,7 +80,7 @@ export function wrapTransportSend(transport: MCPTransport): void {
80
fill(transport, 'send', originalSend => {
81
return async function (this: MCPTransport, ...args: unknown[]) {
82
const [message] = args;
83
-
+
84
if (isJsonRpcNotification(message)) {
85
return createMcpOutgoingNotificationSpan(message, this, () => {
86
return (originalSend as (...args: unknown[]) => unknown).call(this, ...args);
0 commit comments