We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tohsaka888/trading-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_config.py•283 B
import pytest
from pydantic import ValidationError
from config import Settings
def test_settings_validation_error_includes_field():
with pytest.raises(ValidationError) as exc:
Settings(environment="dev", data_dir="/tmp")
assert "default_symbol" in str(exc.value)