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•444 B
"""
MCP Tools for Red Bee Media OTT Platform
This module contains all the MCP tools for interacting with Red Bee Media APIs.
"""
from .auth import AUTH_TOOLS
from .content import CONTENT_TOOLS
from .user_management import USER_MANAGEMENT_TOOLS
from .purchases import PURCHASES_TOOLS
from .system import SYSTEM_TOOLS
__all__ = [
"AUTH_TOOLS",
"CONTENT_TOOLS",
"USER_MANAGEMENT_TOOLS",
"PURCHASES_TOOLS",
"SYSTEM_TOOLS"
]