()
| 51 | |
| 52 | |
| 53 | def test_mcps001_initialize(): |
| 54 | app = _make_app() |
| 55 | result = _mcp(app, "initialize") |
| 56 | |
| 57 | assert result is not None |
| 58 | assert result["id"] == 1 |
| 59 | assert result["jsonrpc"] == "2.0" |
| 60 | assert result["result"]["protocolVersion"] == LATEST_PROTOCOL_VERSION |
| 61 | assert "serverInfo" in result["result"] |
| 62 | |
| 63 | |
| 64 | def test_mcps002_tools_call(): |