We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/universalamateur/reclaim-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""Custom exceptions for Reclaim MCP server."""
class ReclaimError(Exception):
"""Base exception for Reclaim MCP errors."""
pass
class NotFoundError(ReclaimError):
"""Resource not found (404)."""
pass
class RateLimitError(ReclaimError):
"""Rate limit exceeded (429)."""
pass
class APIError(ReclaimError):
"""General API error."""
pass