Spaces:
Running
Running
| #!/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() | |