Skip to main content
Glama
sync.py768 B
"""Sync endpoints for the Trakt MCP server.""" from collections.abc import Mapping from typing import Final # Sync API endpoints (placeholders use colon syntax and are expanded by client helpers) SYNC_ENDPOINTS: Final[Mapping[str, str]] = { # Rating endpoints "sync_ratings_get": "/sync/ratings/:type/:rating", "sync_ratings_get_type": "/sync/ratings/:type", "sync_ratings_add": "/sync/ratings", "sync_ratings_remove": "/sync/ratings/remove", # Watchlist endpoints "sync_watchlist_add": "/sync/watchlist", "sync_watchlist_get": "/sync/watchlist/:type/:sort_by/:sort_how", "sync_watchlist_get_all": "/sync/watchlist", "sync_watchlist_get_type": "/sync/watchlist/:type", "sync_watchlist_remove": "/sync/watchlist/remove", }

Latest Blog Posts

MCP directory API

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