eia mcp gridsense for VS Code
io.github.pranavbhosale25/eia-mcp-gridsense
MCP server for US electricity grid data: fuel mix, demand, retail prices, CO2 emissions
client:VS Code
transport:stdio
runtime:pypi
Install eia mcp gridsense in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "eia-api-key",
"description": "EIA_API_KEY",
"password": true
}
],
"servers": {
"eia-mcp-gridsense": {
"type": "stdio",
"command": "uvx",
"args": [
"eia-mcp-gridsense"
],
"env": {
"EIA_API_KEY": "${input:eia-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs