AESO MCP for VS Code
io.github.bchoi-qwe/aeso-mcp
Typed Alberta electricity market data and analytics via official AESO APIs.
client:VS Code
transport:stdio
runtime:pypi
Install AESO MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "aeso-api-key",
"description": "AESO_API_KEY",
"password": true
}
],
"servers": {
"aeso-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"aeso-mcp"
],
"env": {
"AESO_API_KEY": "${input:aeso-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