""" Gitea HTTP MCP Wrapper This package provides an HTTP transport wrapper around the official Gitea MCP server. It handles configuration loading, tool filtering, and HTTP authentication middleware. Architecture: - config/: Configuration loader module - middleware/: HTTP authentication middleware - filtering/: Tool filtering for Claude Desktop compatibility - server.py: Main HTTP MCP server implementation """ from .server import GiteaMCPWrapper, create_app, main __version__ = "0.1.0" __all__ = ["__version__", "GiteaMCPWrapper", "create_app", "main"]