(
forkManager: ForkManager,
mcpConfig: MCPConfigManager,
appConfig?: { getConfig: (k?: any, d?: any) => any; setConfig: (k: string, ...a: any) => any }
)
| 72 | private activeTransports = new Set<StreamableHTTPServerTransport>() |
| 73 | |
| 74 | constructor( |
| 75 | forkManager: ForkManager, |
| 76 | mcpConfig: MCPConfigManager, |
| 77 | appConfig?: { getConfig: (k?: any, d?: any) => any; setConfig: (k: string, ...a: any) => any } |
| 78 | ) { |
| 79 | this.mcpConfig = mcpConfig |
| 80 | this.tools = new MCPTools(forkManager, mcpConfig, appConfig) |
| 81 | this.buildToolDefs() |
| 82 | } |
| 83 | |
| 84 | isRunning() { |
| 85 | return this.running |
nothing calls this directly
no test coverage detected