fix: specify type for serverConfigData as Record<string, any>

This commit is contained in:
Daniel Riccio 2025-06-16 11:44:09 -05:00
parent 880361ef94
commit 6c965dcff3

View file

@ -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<string, any> = {}
if (actualSource === "project") {
// Get project MCP config path
const projectMcpPath = await this.getProjectMcpPath()