File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 22General purpose MCP tools service.
33"""
44
5- from core .factory import MCPToolBase , Domain
6- from utils .formatters import format_success_response , format_error_response
5+ from core .factory import Domain , MCPToolBase
76from utils .date_utils import get_current_timestamp
7+ from utils .formatters import format_error_response , format_success_response
88
99
1010class GeneralService (MCPToolBase ):
@@ -17,8 +17,8 @@ def register_tools(self, mcp) -> None:
1717 """Register general tools with the MCP server."""
1818
1919 @mcp .tool (tags = {self .domain .value })
20- def greet (name : str ) -> str :
21- """Greets the user with the provided name."""
20+ def greet_test (name : str ) -> str :
21+ """Test for MCP - Greets the user with the provided name."""
2222 try :
2323 details = {
2424 "name" : name ,
You can’t perform that action at this time.
0 commit comments