We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/harimkang/mcp-korea-tourism-api'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•423 B
import pytest_asyncio
from mcp_tourism.api_client import KoreaTourismApiClient
@pytest_asyncio.fixture
async def client():
"""Provides a KoreaTourismApiClient instance for testing."""
# Use a dummy API key for testing
api_client = KoreaTourismApiClient(api_key="TEST_API_KEY")
yield api_client
# Clean up the shared client after tests if needed
await KoreaTourismApiClient.close_all_connections()