We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gotalab/skillport'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_settings_fail_fast.py•295 B
import pytest
from skillport.shared.config import Config
def test_openai_requires_key(monkeypatch):
"""provider=openai without key should fail fast."""
monkeypatch.delenv("OPENAI_API_KEY", raising=False)
with pytest.raises(ValueError):
Config(embedding_provider="openai")