Govee for VS Code
io.github.evefromwayback/govee-mcp
LAN-first, cloud-fallback MCP server for Govee smart lights and devices.
client:VS Code
transport:stdio
runtime:pypi
Install Govee in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "govee-api-key",
"description": "GOVEE_API_KEY",
"password": true
}
],
"servers": {
"govee-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"govee-mcp"
],
"env": {
"GOVEE_API_KEY": "${input:govee-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