webhook_get_architecture
Retrieve the webhook architecture overview for LaunchFrame projects, including receipt/processing separation, WebhookLog entity, Bull queue, and retry cron implementation.
Instructions
Get an overview of the LaunchFrame webhook architecture: receipt/processing separation, WebhookLog entity, Bull queue, and retry cron.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/webhooks.ts:9-16 (handler)The handler for 'webhook_get_architecture' is defined directly within the `server.tool` registration in `src/tools/webhooks.ts`. It loads and returns the content from `webhooks/architecture.md`.
server.tool( 'webhook_get_architecture', 'Get an overview of the LaunchFrame webhook architecture: receipt/processing separation, WebhookLog entity, Bull queue, and retry cron.', {}, async () => ({ content: [{ type: 'text', text: loadContent('webhooks/architecture.md') }], }) );