(config: McpServerConfig)
| 443 | } |
| 444 | |
| 445 | function isSSEConfig(config: McpServerConfig): config is McpSSEServerConfig { |
| 446 | return config.type === 'sse' |
| 447 | } |
| 448 | |
| 449 | function isHTTPConfig(config: McpServerConfig): config is McpHTTPServerConfig { |
| 450 | return config.type === 'http' |
no outgoing calls
no test coverage detected