We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ashwin2912/saleor-dashboard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•550 B
"""Custom exceptions for Saleor MCP Server."""
class SaleorMCPError(Exception):
"""Base exception for Saleor MCP Server errors"""
pass
class AuthenticationError(SaleorMCPError):
"""Raised when authentication with Saleor fails."""
pass
class GraphQLError(SaleorMCPError):
"""Raised when GraphQL query returns errors."""
pass
class ConfigurationError(SaleorMCPError):
"""Raised when configuartion is invalid"""
pass
class NetworkError(SaleorMCPError):
"""Raised when network requests fail"""
pass