Files
my-pal-mcp-server/tools/__init__.py
Fahad 70b64adff3 Schema now lists all models including locally available models
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
2025-06-16 19:07:35 +04:00

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",
]