Files
klz-cables.com/.pnpm-store/v10/files/d4/916ebabf66966cd6e21e63e2c89dc554822f3ff9205e035055f9fe2e01126cbbe2a8b2b39edf9c6136e90f7c8cb43bd57bc5e0715a0259dbf63411a3264962
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

29 lines
1.1 KiB
Plaintext

/**
* Handler method wrapping for MCP server instrumentation
*
* Provides automatic error capture and span correlation for tool, resource,
* and prompt handlers.
*/
import { MCPServerInstance } from './types';
/**
* Wraps tool handlers to associate them with request spans
* @param serverInstance - MCP server instance
*/
export declare function wrapToolHandlers(serverInstance: MCPServerInstance): void;
/**
* Wraps resource handlers to associate them with request spans
* @param serverInstance - MCP server instance
*/
export declare function wrapResourceHandlers(serverInstance: MCPServerInstance): void;
/**
* Wraps prompt handlers to associate them with request spans
* @param serverInstance - MCP server instance
*/
export declare function wrapPromptHandlers(serverInstance: MCPServerInstance): void;
/**
* Wraps all MCP handler types (tool, resource, prompt) for span correlation
* @param serverInstance - MCP server instance
*/
export declare function wrapAllMCPHandlers(serverInstance: MCPServerInstance): void;
//# sourceMappingURL=handlers.d.ts.map