(app, tool_name, arguments=None, request_id=1)
| 29 | |
| 30 | |
| 31 | def _call_tool(app, tool_name, arguments=None, request_id=1): |
| 32 | return _mcp( |
| 33 | app, "tools/call", {"name": tool_name, "arguments": arguments or {}}, request_id |
| 34 | ) |
| 35 | |
| 36 | |
| 37 | def _call_tool_output( |
no test coverage detected
searching dependent graphs…