Enhance main module: added comprehensive server instructions, background API monitoring tasks, dynamic schema adaptation, and detailed logging configuration. Updated Settings with extended environment-based config options.

This commit is contained in:
Yûki VACHOT 2025-11-29 00:12:51 +01:00
parent 383dd0b812
commit aad2bc93ea
3 changed files with 138 additions and 12 deletions

View file

@ -0,0 +1,13 @@
"""
GeoGuessr MCP Server Package.
A Model Context Protocol server for analyzing GeoGuessr game statistics
with automatic API monitoring and dynamic schema adaptation.
"""
__version__ = "0.2.0"
__author__ = "Yûki VACHOT"
from .main import mcp, main
__all__ = ["mcp", "main", "__version__"]