(self)
| 26 | pass |
| 27 | |
| 28 | def tool(self): |
| 29 | # Return a decorator that just returns the original function |
| 30 | def decorator(func): |
| 31 | return func |
| 32 | return decorator |
| 33 | |
| 34 | # Mock the MCP modules with our custom FastMCP |
| 35 | mcp_server_fastmcp = Mock() |
nothing calls this directly
no outgoing calls
no test coverage detected