queue_get_names
Retrieve all available Bull queue names with their purposes and usage rules in LaunchFrame projects to understand job processing workflows.
Instructions
List all available Bull queues in LaunchFrame with their purpose and usage rules.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/queues.ts:9-16 (handler)The handler for 'queue_get_names' is defined here. It returns the content of 'queues/names.md' via the 'loadContent' utility.
server.tool( 'queue_get_names', 'List all available Bull queues in LaunchFrame with their purpose and usage rules.', {}, async () => ({ content: [{ type: 'text', text: loadContent('queues/names.md') }], }) );