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_auggie_auto.py•431 B
import os
from importlib import reload
import pytest
import server as zen_server
def test_auto_activation(monkeypatch):
monkeypatch.setenv("AUGGIE_CLI", "true")
reload(zen_server)
# If wrappers available, aug_* tools should be present
tools = getattr(zen_server, "TOOLS", {})
# Can't assert definitely in CI without wrappers import, but ensure no crash and TOOLS is dict
assert isinstance(tools, dict)