Rocky_Mountain_Vending/.pnpm-store/v10/files/cb/4391f1e253a888a5c0cf01d808c6b738668c1e3fa22c42a9b30e1df6b3ae807a4308fc17c290c67feb32df5f257aa05970768de8b48616d628c919bcd03666
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

21 lines
843 B
Text

/**
* Method configuration and request processing for MCP server instrumentation
*/
/**
* Extracts target info from method and params based on method type
* @param method - MCP method name
* @param params - Method parameters
* @returns Target name and attributes for span instrumentation
*/
export declare function extractTargetInfo(method: string, params: Record<string, unknown>): {
target?: string;
attributes: Record<string, string>;
};
/**
* Extracts request arguments based on method type
* @param method - MCP method name
* @param params - Method parameters
* @returns Arguments as span attributes with mcp.request.argument prefix
*/
export declare function getRequestArguments(method: string, params: Record<string, unknown>): Record<string, string>;
//# sourceMappingURL=methodConfig.d.ts.map