We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/xcollantes/mcp-template'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_main.py•304 B
"""Tests for main module."""
import logging
from src.main import setup_logging
def test_setup_logging_creates_logger() -> None:
"""Test that the module logger can be retrieved after setup."""
setup_logging(debug=False)
logger = logging.getLogger("src.main")
assert logger is not None