-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathenv.example
More file actions
30 lines (25 loc) · 933 Bytes
/
env.example
File metadata and controls
30 lines (25 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# ========================================
# MCP Spotify Player - Configuración
# ========================================
# Spotify API Configuration
# You can obtain these credentials at https://developer.spotify.com/dashboard
SPOTIFY_CLIENT_ID=your_spotify_client_id_here
SPOTIFY_CLIENT_SECRET=your_spotify_client_secret_here
SPOTIFY_REDIRECT_URI=http://127.0.0.1:8000/auth/callback
# Optional: custom path to store OAuth tokens
# Defaults to ~/.config/mcp_spotify_player/tokens.json
# MCP_SPOTIFY_TOKENS_PATH=/path/to/tokens.json
# Server Configuration
PORT=8000
HOST=127.0.0.1
DEBUG=True
# MCP Configuration
MCP_SERVER_NAME=spotify-player
MCP_SERVER_VERSION=1.0.0
# ========================================
# Instructions:
# 1. Copy this file to .env
# 2. Replace the credentials with your own
# 3. Make sure the redirect URL matches
# the one configured in your Spotify app
# ========================================