(result: unknown)
| 37 | |
| 38 | // Helper function to check if result is a message action |
| 39 | const isMessageAction = (result: unknown): result is MessageActionReturn => |
| 40 | result !== null && |
| 41 | typeof result === 'object' && |
| 42 | 'type' in result && |
| 43 | result.type === 'message'; |
| 44 | |
| 45 | // Helper function to create a mock DiscoveredMCPTool |
| 46 | const createMockMCPTool = ( |