We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yihaoWang/clickup-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•521 B
class ClickUpAPIException(Exception):
"""Base exception for ClickUp API errors"""
pass
class AuthenticationException(ClickUpAPIException):
"""Raised when authentication fails"""
pass
class RateLimitException(ClickUpAPIException):
"""Raised when rate limit is exceeded"""
pass
class NotFoundException(ClickUpAPIException):
"""Raised when resource is not found"""
pass
class PermissionException(ClickUpAPIException):
"""Raised when user lacks permission for operation"""
pass