We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/henrardo/llm-graph-builder-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
llm_graph_builder_exception.py•205 B
class LLMGraphBuilderException(Exception):
"""Exception raised for custom error in the application."""
def __init__(self, message):
self.message = message
super().__init__(message)