Skip to content
VS Code

air-Q Cloud for VS Code

io.github.corantgmbh/mcp-airq-cloud

MCP server for air-Q Cloud API — access air quality data from anywhere

client:VS Code transport:stdio runtime:pypi

Install air-Q Cloud in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "airq-cloud-config-file",
      "description": "AIRQ_CLOUD_CONFIG_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "airq-cloud-devices",
      "description": "AIRQ_CLOUD_DEVICES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "airq-cloud-api-key",
      "description": "AIRQ_CLOUD_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-airq-cloud": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-airq-cloud"
      ],
      "env": {
        "AIRQ_CLOUD_CONFIG_FILE": "${input:airq-cloud-config-file}",
        "AIRQ_CLOUD_DEVICES": "${input:airq-cloud-devices}",
        "AIRQ_CLOUD_API_KEY": "${input:airq-cloud-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

air-Q Cloud in other clients