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
response.py•341 B
"""Sync response models for the Trakt MCP server."""
from typing import Annotated
from pydantic import BaseModel, Field
from models.sync.base import TraktSyncRating
class TraktSyncRatingsResponse(BaseModel):
"""Response structure from sync ratings API."""
ratings: Annotated[list[TraktSyncRating], Field(default_factory=list)]