strava-mcp / app.py
burtenshaw
add a gradio app
73043c6
raw
history blame contribute delete
244 Bytes
#!/usr/bin/env python3
"""
Strava MCP Server for Hugging Face Spaces
This is the main entry point for running the Gradio-based Strava MCP server on HF Spaces.
"""
from strava_mcp.gradio_server import main
if __name__ == "__main__":
main()