We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/devonmojito/ton-blockchain-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
_exceptions.py•352 B
class TonSdkException(Exception):
"""
Base class for tonsdk exceptions.
Subclasses should provide `.default_detail` properties.
"""
default_detail = 'TonSdk error.'
def __init__(self, detail=None):
self.detail = self.default_detail if detail is None else detail
def __str__(self):
return str(self.detail)