( mcpClients: MCPServerConnection[] | undefined, )
| 158 | } |
| 159 | |
| 160 | function getMcpInstructionsSection( |
| 161 | mcpClients: MCPServerConnection[] | undefined, |
| 162 | ): string | null { |
| 163 | if (!mcpClients || mcpClients.length === 0) return null |
| 164 | return getMcpInstructions(mcpClients) |
| 165 | } |
| 166 | |
| 167 | export function prependBullets(items: Array<string | string[]>): string[] { |
| 168 | return items.flatMap(item => |
no test coverage detected