File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 ]
1111}
1212
13+
Original file line number Diff line number Diff line change 22
33node " %~dp0 \run" %*
44
5+
Original file line number Diff line number Diff line change @@ -68,11 +68,10 @@ export class B2CDxMcpServer extends McpServer {
6868 _extra : RequestHandlerExtra < ServerRequest , ServerNotification > ,
6969 ) : Promise < CallToolResult > => {
7070 // TODO: Telemetry - Track timing and send TOOL_CALLED event
71- // const startTime = Date.now();
71+ const startTime = Date . now ( ) ;
7272 const result = await handler ( args ) ;
7373 // TODO: Telemetry - Send TOOL_CALLED event with { name, runtimeMs, isError: result.isError }
74- const runtimeMs = Date . now ( ) - startTime ;
75- void runtimeMs ; // Silence unused variable until telemetry is implemented
74+ const _runtimeMs = Date . now ( ) - startTime ; // Prefixed with _ to indicate intentionally unused until telemetry is implemented
7675
7776 return result ;
7877 } ;
You can’t perform that action at this time.
0 commit comments