Call a tool. Args: server_name(`str`): The server name of the tool. tool_name: The tool name. tool_args: The tool args in dict format. Returns: Calling result in string format.
(self, server_name: str, *, tool_name: str,
tool_args: dict)
| 77 | |
| 78 | @abstractmethod |
| 79 | async def call_tool(self, server_name: str, *, tool_name: str, |
| 80 | tool_args: dict) -> str: |
| 81 | """Call a tool. |
| 82 | |
| 83 | Args: |
| 84 | server_name(`str`): The server name of the tool. |
| 85 | tool_name: The tool name. |
| 86 | tool_args: The tool args in dict format. |
| 87 | |
| 88 | Returns: |
| 89 | Calling result in string format. |
| 90 | """ |
| 91 | pass |
no outgoing calls