mcpmark / synth /generators /__init__.py
haochengsama's picture
Add files using upload-large-folder tool
97cb846 verified
Raw
History Blame Contribute Delete
306 Bytes
"""Synthetic task generators, organized by MCP service then subtask.
Layout: generators/<service>/<subtask>/__init__.py defines one Generator.
Add a new service by importing its REGISTRY and merging it below.
"""
from .filesystem import REGISTRY as FILESYSTEM_REGISTRY
REGISTRY = {**FILESYSTEM_REGISTRY}