generated from personal-projects/leo-claude-mktplace
- 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>
12 lines
349 B
Python
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"]
|