We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CoplayDev/unity-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_refresh_unity_registration.py•491 B
from services.registry import get_registered_tools
def test_refresh_unity_tool_is_registered():
"""
Red test: we expect an explicit refresh tool to exist so callers can force an import/refresh/compile cycle.
"""
# Import the specific module to ensure it registers its decorator without disturbing global registry state.
import services.tools.refresh_unity # noqa: F401
names = {t.get("name") for t in get_registered_tools()}
assert "refresh_unity" in names