We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Boring206/boring-gemini'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•291 B
class FlowError(Exception):
"""
Critical error in the flow that strictly halts execution.
Used for guardrail violations, implementation gaps, or safety checks.
"""
pass
class GuardrailError(FlowError):
"""Specific error for PreFlightCheck violations."""
pass