We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/minipuft/claude-prompts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env python3
"""
Gemini Adapter: Stop Hook
Wraps ralph-stop logic for autonomous loops.
"""
import sys
from pathlib import Path
# Add shared lib/hooks root
CORE_HOOKS_DIR = Path(__file__).resolve().parent.parent
sys.path.insert(0, str(CORE_HOOKS_DIR))
import importlib.util
spec = importlib.util.spec_from_file_location("ralph_stop", CORE_HOOKS_DIR / "ralph-stop.py")
ralph_stop = importlib.util.module_from_spec(spec)
sys.modules["ralph_stop"] = ralph_stop
spec.loader.exec_module(ralph_stop)
if __name__ == "__main__":
ralph_stop.main()