Rocky_Mountain_Vending/.pnpm-store/v10/files/58/6e5e1f114f9800a7c0de6e0a46250b478273c44c2364191cbdc80d1380e1809936aa94cbf6cdba44453a799feb87688cc704a28f94a130fc98ccc7a78acc9e
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

28 lines
No EOL
1.1 KiB
Text

/**
* Handler method wrapping for MCP server instrumentation
*
* Provides automatic error capture and span correlation for tool, resource,
* and prompt handlers.
*/
import type { 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