From e486d78e3161a8bf372afe9c244f8f2694a538b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Y=C3=BBki=20VACHOT?= Date: Sat, 29 Nov 2025 00:47:58 +0100 Subject: [PATCH] Standardize "GeoGuessr" naming in docstrings for consistency and correctness. --- src/geoguessr_mcp/tools/auth_tools.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/geoguessr_mcp/tools/auth_tools.py b/src/geoguessr_mcp/tools/auth_tools.py index ea37969..4ea1ef5 100644 --- a/src/geoguessr_mcp/tools/auth_tools.py +++ b/src/geoguessr_mcp/tools/auth_tools.py @@ -13,18 +13,18 @@ def register_auth_tools(mcp: FastMCP, session_manager: SessionManager): @mcp.tool() async def login(email: str, password: str) -> dict: """ - Authenticate with Geoguessr using your email and password. + Authenticate with GeoGuessr using your email and password. This creates a session that will be used for all later API calls. Args: - email: Your Geoguessr account email - password: Your Geoguessr account password + email: Your GeoGuessr account email + password: Your GeoGuessr account password Returns: Session information including username and session token Note: Your credentials are only used to get an authentication token - from Geoguessr. They are not stored on the server. + from GeoGuessr. They are not stored on the server. """ try: @@ -48,7 +48,7 @@ def register_auth_tools(mcp: FastMCP, session_manager: SessionManager): @mcp.tool() async def logout() -> dict: """ - Logout from the current Geoguessr session. + Logout from the current GeoGuessr session. This invalidates the current session token. """ global _current_session_token