(self, name, arguments, timeout=180)
| 119 | return resp["result"]["tools"] |
| 120 | |
| 121 | def call_tool(self, name, arguments, timeout=180): |
| 122 | return self.request("tools/call", |
| 123 | {"name": name, "arguments": arguments}, timeout=timeout) |
| 124 | |
| 125 | @staticmethod |
| 126 | def tool_text(resp): |