(app, tool_name, arguments=None)
| 35 | |
| 36 | |
| 37 | def _call_tool_structured(app, tool_name, arguments=None): |
| 38 | result = _mcp(app, "tools/call", {"name": tool_name, "arguments": arguments or {}}) |
| 39 | return result["result"]["structuredContent"] |
| 40 | |
| 41 | |
| 42 | def _call_tool_output( |
no test coverage detected
searching dependent graphs…