We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/philogicae/ygg-torrent-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from pydantic import BaseModel
class Torrent(BaseModel):
id: int
filename: str
category: str
size: str
seeders: int
leechers: int
downloads: int | None = None
date: str
magnet_link: str | None = None
def __str__(self) -> str:
return str(self.model_dump(exclude_unset=True, exclude_none=True))