We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kamatalarajeev/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•486 B
"""
Crypto MCP Server - A Model Context Protocol server for cryptocurrency market data.
This package provides real-time and historical cryptocurrency market data
through the MCP protocol, with support for multiple exchanges via CCXT.
"""
from .server import CryptoMCPServer
from .crypto_api import CryptoAPI
from .cache import Cache, CachedCryptoAPI
__version__ = "1.0.0"
__author__ = "Rajeev"
__all__ = [
'CryptoMCPServer',
'CryptoAPI',
'Cache',
'CachedCryptoAPI'
]