We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Tamsi/redbee-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•554 B
"""
Red Bee MCP Server
MCP Server for Red Bee Media OTT Platform API
"""
__version__ = "1.4.2"
__author__ = "Tamsi Besson"
# Import only the client by default to avoid heavy dependencies
from .client import RedBeeClient
from .models import RedBeeConfig
# Conditional server import (to avoid breaking if FastAPI is not installed)
try:
from .server import create_mcp_server
MCP_AVAILABLE = True
except ImportError:
MCP_AVAILABLE = False
__all__ = ["RedBeeClient", "RedBeeConfig"]
if MCP_AVAILABLE:
__all__.append("create_mcp_server")