We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NyxiumYuuki/GeoGuessrMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""Data models for GeoGuessr."""
from .achievement import Achievement
from .daily_challenge import DailyChallenge
from .game import Game
from .round_guess import RoundGuess
from .season_stats import SeasonStats
from .user_profile import UserProfile
from .user_stats import UserStats
__all__ = [
"UserProfile",
"UserStats",
"RoundGuess",
"Game",
"Achievement",
"SeasonStats",
"DailyChallenge",
]