New tool to list all models `listmodels` Integration test to for all the different combinations of API keys Tweaks to codereview prompt for a better quality input from Claude Fixed missing 'low' severity in codereview
28 lines
615 B
Python
28 lines
615 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 .listmodels import ListModelsTool
|
|
from .precommit import Precommit
|
|
from .refactor import RefactorTool
|
|
from .testgen import TestGenerationTool
|
|
from .thinkdeep import ThinkDeepTool
|
|
from .tracer import TracerTool
|
|
|
|
__all__ = [
|
|
"ThinkDeepTool",
|
|
"CodeReviewTool",
|
|
"DebugIssueTool",
|
|
"AnalyzeTool",
|
|
"ChatTool",
|
|
"ListModelsTool",
|
|
"Precommit",
|
|
"RefactorTool",
|
|
"TestGenerationTool",
|
|
"TracerTool",
|
|
]
|