We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ext-sakamoro/AsepriteMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•913 B
"""Aseprite MCP exceptions."""
class AsepriteMCPError(Exception):
"""Base exception for Aseprite MCP."""
pass
class AsepriteNotFoundError(AsepriteMCPError):
"""Raised when Aseprite executable is not found."""
pass
class AsepriteError(AsepriteMCPError):
"""Raised when Aseprite command fails."""
pass
class ValidationError(AsepriteMCPError):
"""Raised when validation fails."""
pass
class CommandError(AsepriteMCPError):
"""Raised when command execution fails."""
pass
class CommandExecutionError(AsepriteMCPError):
"""Raised when command execution fails."""
pass
class LuaScriptError(AsepriteMCPError):
"""Raised when Lua script execution fails."""
pass
class FileNotFoundError(AsepriteMCPError):
"""Raised when file is not found."""
pass
class SecurityError(AsepriteMCPError):
"""Raised when security check fails."""
pass