We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wallacetju/myStockMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•270 B
"""Pytest configuration and fixtures."""
import pytest
from stock_data_mcp.cache import get_cache
@pytest.fixture(autouse=True)
def reset_cache():
"""Reset cache before and after each test."""
cache = get_cache()
cache.clear()
yield
cache.clear()