()
| 47 | |
| 48 | |
| 49 | def _fetch_spec() -> dict[str, Any]: |
| 50 | response = httpx.get(constants.OPENAPI_SPEC_URL) |
| 51 | response.raise_for_status() |
| 52 | spec: dict[str, Any] = response.json() |
| 53 | return spec |
| 54 | |
| 55 | |
| 56 | def create_server(settings: config.Settings) -> FastMCP[None]: |
no test coverage detected