Files
klz-cables.com/.pnpm-store/v10/files/f3/3a4ecf8d7452def6d5affdca0d576b4e144c94e71f9ed968c258d4c80ec6c9bb715035607f9a9058f5261a7402223fc6ad4a3f1efd2db085f07ad398db8ced
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

21 lines
821 B
Plaintext

/**
* 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