(configPath?: string)
| 11 | private config!: MCPConfigFile; |
| 12 | |
| 13 | constructor(configPath?: string) { |
| 14 | this.configPath = configPath || join(homedir(), '.blade', 'mcp-config.json'); |
| 15 | this.loadConfig(); |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * 加载配置 |
nothing calls this directly
no test coverage detected