We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/carlosedp/redfish-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•660 B
"""Custom exceptions for the Redfish MCP server."""
class RedfishError(Exception):
"""Base exception for Redfish MCP server errors."""
pass
class ConnectionError(RedfishError):
"""Raised when there's an issue connecting to Redfish endpoints."""
pass
class ValidationError(RedfishError):
"""Raised when input validation fails."""
pass
class AuthenticationError(RedfishError):
"""Raised when authentication fails."""
pass
class ConfigurationError(RedfishError):
"""Raised when there's a configuration issue."""
pass
class OperationError(RedfishError):
"""Raised when a Redfish operation fails."""
pass