From 6c965dcff3449529aca9e87bf84a12c82191b5d2 Mon Sep 17 00:00:00 2001 From: Daniel Riccio Date: Mon, 16 Jun 2025 11:44:09 -0500 Subject: [PATCH] fix: specify type for serverConfigData as Record --- src/services/mcp/McpHub.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/mcp/McpHub.ts b/src/services/mcp/McpHub.ts index 64038292de..bd1086020f 100644 --- a/src/services/mcp/McpHub.ts +++ b/src/services/mcp/McpHub.ts @@ -824,7 +824,7 @@ export class McpHub { // Read from the appropriate config file based on the actual source try { - let serverConfigData: any + let serverConfigData: Record = {} if (actualSource === "project") { // Get project MCP config path const projectMcpPath = await this.getProjectMcpPath()