We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Zazzles2908/EX_AI-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_suggestions_engine.py•315 B
from ui.suggestions import SuggestionEngine
def test_suggestions_engine_outputs_list():
eng = SuggestionEngine()
s1 = eng.generate({})
s2 = eng.generate({"has_images": True})
assert isinstance(s1, list) and s1
assert any("multimodal" in x.lower() for x in eng.generate({"has_images": True}))