Minimal stand-in for MCPServer so protected endpoints can run.
| 23 | |
| 24 | |
| 25 | class FakeServer: |
| 26 | """Minimal stand-in for MCPServer so protected endpoints can run.""" |
| 27 | |
| 28 | async def handle_tool_call(self, name, arguments): |
| 29 | return {"repositories": [], "tool": name} |
| 30 | |
| 31 | |
| 32 | @pytest.fixture |