File size: 364 Bytes
9dbb7e3 | 1 2 3 4 5 6 7 8 9 10 11 12 | """
MCP Tool: get_task_list
Get a list of all supported image generation task types along with their required/optional parameter lists.
"""
from .common import _TASK_DEFINITIONS
def handle_get_task_list() -> list:
"""Get a list of all supported image generation task types along with their required/optional parameter lists."""
return _TASK_DEFINITIONS
|