| 1 | import register from '@givewp/mcp-server/angie'; |
| 2 | import { GiveMcpServerOptions } from '@givewp/mcp-server/angie'; |
| 3 | |
| 4 | declare const window: { |
| 5 | GiveMcpServerOptions: GiveMcpServerOptions; |
| 6 | } & Window; |
| 7 | |
| 8 | // Register the GiveWP MCP Server with Elementor's angie for use in the dashboard. |
| 9 | register(window.GiveMcpServerOptions).then(() => console.log('GiveWP Angie MCP connection successful')); |
| 10 |