Files
gitea-mcp-remote/src/gitea_mcp_remote/__init__.py
lmiranda fb8cc08112 feat: Remove old server and create MCP base server structure
- Delete old subprocess-based server.py
- Create new server_http.py with base structure for MCP Streamable HTTP protocol
- Update __init__.py to import from server_http
- Health check endpoint in place
- Middleware integration ready for MCP endpoints

Issue #24 will add the actual MCP protocol endpoints.

Closes #23

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 18:07:51 -05:00

12 lines
349 B
Python

"""
Gitea MCP Remote — HTTP deployment wrapper for marketplace Gitea MCP server.
Imports tool definitions from gitea-mcp-server (marketplace) and serves them
over Streamable HTTP transport with authentication and TLS via Caddy.
"""
from .server_http import create_app, main
__version__ = "0.2.0"
__all__ = ["__version__", "create_app", "main"]