mirror of
https://github.com/aljazceru/mcp-python-sdk.git
synced 2025-12-19 14:54:24 +01:00
8 lines
176 B
Python
8 lines
176 B
Python
"""Main entry point for simple MCP server with GitHub OAuth authentication."""
|
|
|
|
import sys
|
|
|
|
from mcp_simple_auth.server import main
|
|
|
|
sys.exit(main()) # type: ignore[call-arg]
|