strava-mcp / run_mcp_server.py
burtenshaw
update sse configuration
4186a82
raw
history blame contribute delete
372 Bytes
#!/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()