File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
UnityMcpBridge/UnityMcpServer~/src Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ Files created:
7878- ` milestones.json ` : One-time events tracker
7979
8080### Data Transmission
81- - ** Endpoint** : ` https://telemetry .coplay.dev/unity-mcp/anonymous `
81+ - ** Endpoint** : ` https://api-prod .coplay.dev/telemetry/events `
8282- ** Method** : HTTPS POST with JSON payload
8383- ** Retry** : Background thread with graceful failure
8484- ** Timeout** : 10 second timeout, no retries on failure
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class ServerConfig:
3636
3737 # Telemetry settings
3838 telemetry_enabled : bool = True
39- telemetry_endpoint : str = "https://telemetry .coplay.dev/unity-mcp/anonymous "
39+ telemetry_endpoint : str = "https://api-prod .coplay.dev/telemetry/events "
4040
4141# Create a global config instance
4242config = ServerConfig ()
Original file line number Diff line number Diff line change @@ -61,11 +61,8 @@ def __init__(self):
6161 # Check environment variables for opt-out
6262 self .enabled = not self ._is_disabled ()
6363
64- # Telemetry endpoint - can be configured via environment
65- self .endpoint = os .environ .get (
66- "UNITY_MCP_TELEMETRY_ENDPOINT" ,
67- "https://telemetry.coplay.dev/unity-mcp/anonymous"
68- )
64+ # Telemetry endpoint - hardcoded to Coplay production API
65+ self .endpoint = "https://api-prod.coplay.dev/telemetry/events"
6966
7067 # Local storage for UUID and milestones
7168 self .data_dir = self ._get_data_directory ()
You can’t perform that action at this time.
0 commit comments