aiseg2 mcp for VS Code
io.github.chanyou0311/aiseg2-mcp
Unofficial read-only MCP server for the Panasonic AiSEG2 HEMS controller.
client:VS Code
transport:stdio
runtime:pypi
Install aiseg2 mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "aiseg-url",
"description": "AISEG_URL",
"password": true
},
{
"type": "promptString",
"id": "aiseg-password",
"description": "AISEG_PASSWORD",
"password": true
}
],
"servers": {
"aiseg2-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"aiseg2-mcp"
],
"env": {
"AISEG_URL": "${input:aiseg-url}",
"AISEG_PASSWORD": "${input:aiseg-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs