We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AyalaOnGit/MCPFolderOrganizer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
errors.py•492 B
"""Custom error classes for the MCP server."""
class MCPError(Exception):
"""Base exception for MCP operations."""
pass
class InvalidPathError(MCPError):
"""Raised when provided path is invalid."""
pass
class FileAccessError(MCPError):
"""Raised when file cannot be accessed."""
pass
class AnalysisError(MCPError):
"""Raised when file analysis fails."""
pass
class OrganizationError(MCPError):
"""Raised when file organization fails."""
pass