Spaces:
Running
Running
Commit
·
677a86b
1
Parent(s):
6be27e0
Use IGDB_CLIENT_ID/SECRET env var names directly
Browse filesFor clarity in HuggingFace Spaces configuration, use the same
environment variable names that the IGDB MCP server expects.
Set these secrets in HF Spaces settings:
- IGDB_CLIENT_ID (your Twitch Client ID)
- IGDB_CLIENT_SECRET (your Twitch Client Secret)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
app.py
CHANGED
|
@@ -25,9 +25,9 @@ IGDB_MCP_SERVER = StdioServerParameters(
|
|
| 25 |
command="uvx",
|
| 26 |
args=["--from", "git+https://github.com/bielacki/igdb-mcp-server.git", "igdb-mcp-server"],
|
| 27 |
env={
|
| 28 |
-
# IGDB MCP server expects IGDB_CLIENT_ID/SECRET (
|
| 29 |
-
"IGDB_CLIENT_ID": os.getenv("
|
| 30 |
-
"IGDB_CLIENT_SECRET": os.getenv("
|
| 31 |
}
|
| 32 |
)
|
| 33 |
|
|
|
|
| 25 |
command="uvx",
|
| 26 |
args=["--from", "git+https://github.com/bielacki/igdb-mcp-server.git", "igdb-mcp-server"],
|
| 27 |
env={
|
| 28 |
+
# IGDB MCP server expects IGDB_CLIENT_ID/SECRET (these are Twitch credentials)
|
| 29 |
+
"IGDB_CLIENT_ID": os.getenv("IGDB_CLIENT_ID", ""),
|
| 30 |
+
"IGDB_CLIENT_SECRET": os.getenv("IGDB_CLIENT_SECRET", "")
|
| 31 |
}
|
| 32 |
)
|
| 33 |
|