(tool_name: str, **kwargs)
| 129 | async with Client(MCP_URL) as client: |
| 130 | |
| 131 | async def call_tool(tool_name: str, **kwargs) -> Dict[str, Any]: |
| 132 | res = await client.call_tool(tool_name, kwargs or {}) |
| 133 | return getattr(res, "data", None) or {} |
| 134 | |
| 135 | idx = await call_tool( |
| 136 | "bm25_index", |
no outgoing calls
no test coverage detected