(tool_name: str, **kwargs)
| 13 | async with Client(MCP_URL) as client: |
| 14 | |
| 15 | async def call_tool(tool_name: str, **kwargs) -> Dict[str, Any]: |
| 16 | res = await client.call_tool(tool_name, kwargs or {}) |
| 17 | return getattr(res, "data", None) or {} |
| 18 | |
| 19 | ex = await call_tool( |
| 20 | "execute_python_code", |
no outgoing calls
no test coverage detected