Files
my-pal-mcp-server/tools/__init__.py
Fahad 4086306c58 New tool: testgen
Generates unit tests and encourages model to auto-detect framework and testing style from existing sample (if available)
2025-06-14 15:41:47 +04:00

22 lines
436 B
Python

"""
Tool implementations for Zen MCP Server
"""
from .analyze import AnalyzeTool
from .chat import ChatTool
from .codereview import CodeReviewTool
from .debug import DebugIssueTool
from .precommit import Precommit
from .testgen import TestGenTool
from .thinkdeep import ThinkDeepTool
__all__ = [
"ThinkDeepTool",
"CodeReviewTool",
"DebugIssueTool",
"AnalyzeTool",
"ChatTool",
"Precommit",
"TestGenTool",
]