We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/genomoncology/biomcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from pathlib import Path
from pytest import fixture
from biomcp import http_client
@fixture
def anyio_backend():
return "asyncio"
class DummyCache:
def __init__(self):
self.store = {}
def set(self, key, value, expire=None):
self.store[key] = value
def get(self, key, default=None):
return self.store.get(key, default)
@property
def count(self):
return len(self.store)
def close(self):
self.store.clear()
@fixture
def http_cache():
cache = DummyCache()
http_client._cache = cache
yield cache
cache.close()
@fixture
def data_dir():
return Path(__file__).parent.parent / "data"