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
client.py•514 B
"""Unified sync client that combines all sync functionality."""
from .ratings_client import SyncRatingsClient
class SyncClient(SyncRatingsClient):
"""Unified client for all sync-related operations.
Combines functionality from:
- SyncRatingsClient: get_sync_ratings(), add_sync_ratings(), remove_sync_ratings()
Note: Inherits OAuth authentication handling from AuthClient through SyncRatingsClient.
All sync operations require user authentication to access personal data.
"""
pass