(componentId: string)
| 116 | const MCP_GROUP_COMPONENTS = ['mcp.group.aws']; |
| 117 | |
| 118 | function isMcpServerComponent(componentId: string): boolean { |
| 119 | return componentId in MCP_SERVER_COMPONENTS; |
| 120 | } |
| 121 | |
| 122 | function isMcpGroupComponent(componentId: string): boolean { |
| 123 | return MCP_GROUP_COMPONENTS.includes(componentId); |
no outgoing calls
no test coverage detected