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
user.py•371 B
"""User-related models for the Trakt MCP server."""
from pydantic import BaseModel
from ..shows import TraktShow
from ..types import UserWatchedSeason
class TraktUserShow(BaseModel):
"""Represents a show watched by a user."""
show: TraktShow
last_watched_at: str
last_updated_at: str
seasons: list[UserWatchedSeason] | None = None
plays: int