#!/usr/bin/env python3 """ Entry point for running the MCP server locally (for Claude Desktop integration). This is separate from the Hugging Face Spaces deployment. """ from strava_mcp.main import main if __name__ == "__main__": print("🚀 Starting Strava MCP Server for Claude Desktop...") print("💡 For Hugging Face Spaces, use app.py instead") main()