Skip to main content
Glama
conftest.py491 B
from __future__ import annotations import json from collections.abc import Callable from pathlib import Path import pytest _FIXTURES = Path(__file__).parent / "fixtures" @pytest.fixture def load_fixture() -> Callable[[str], dict]: """Load a JSON fixture from the test fixtures directory.""" def _load(name: str) -> dict: path = _FIXTURES / "uniprot" / name with path.open("r", encoding="utf-8") as handle: return json.load(handle) return _load

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/josefdc/Uniprot-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server