We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wwiens/trakt_mcpserver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•292 B
"""Progress client module for Trakt API."""
from typing import Final
from .client import ProgressClient
from .playback import PlaybackClient
from .show_progress import ShowProgressClient
__all__: Final[list[str]] = [
"PlaybackClient",
"ProgressClient",
"ShowProgressClient",
]