# TickTick MCP Server Environment Variables # Copy this file to .env and fill in your actual values # Required: Get these from https://developer.ticktick.com/ TICKTICK_CLIENT_ID=your_client_id_here TICKTICK_CLIENT_SECRET=your_client_secret_here # Optional: OAuth redirect URI (defaults to http://localhost:3000/callback) TICKTICK_REDIRECT_URI=http://localhost:3000/callback # Optional: Pre-authenticated tokens (get these after OAuth flow) TICKTICK_ACCESS_TOKEN=your_access_token_here TICKTICK_REFRESH_TOKEN=your_refresh_token_here # How to get credentials: # 1. Visit https://developer.ticktick.com/ # 2. Login with your TickTick account # 3. Click "Manage Apps" in the top right # 4. Click "+App Name" to create a new app # 5. Enter any app name (e.g., "My MCP Server") # 6. Copy the generated Client ID and Client Secret # 7. Set OAuth Redirect URL to: http://localhost:3000/callback