()
| 554 | } |
| 555 | |
| 556 | function getRemoteMcpServerConnectionBatchSize(): number { |
| 557 | return ( |
| 558 | parseInt(process.env.MCP_REMOTE_SERVER_CONNECTION_BATCH_SIZE || '', 10) || |
| 559 | 20 |
| 560 | ) |
| 561 | } |
| 562 | |
| 563 | function isLocalMcpServer(config: ScopedMcpServerConfig): boolean { |
| 564 | return !config.type || config.type === 'stdio' || config.type === 'sdk' |
no outgoing calls
no test coverage detected