What is the air-Q MCP server?
MCP server for direct HTTP communication with air-Q air quality sensor devices
How to install air-Q
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
AIRQ_CONFIG_FILEPath to the air-Q device configuration JSON file
AIRQ_DEVICESsecretInline JSON array with configured air-Q devices
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-airq": {
"command": "uvx",
"args": [
"mcp-airq"
],
"env": {
"AIRQ_CONFIG_FILE": "<YOUR_AIRQ_CONFIG_FILE>",
"AIRQ_DEVICES": "<YOUR_AIRQ_DEVICES>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-airq": {
"command": "uvx",
"args": [
"mcp-airq"
],
"env": {
"AIRQ_CONFIG_FILE": "<YOUR_AIRQ_CONFIG_FILE>",
"AIRQ_DEVICES": "<YOUR_AIRQ_DEVICES>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-airq": {
"command": "uvx",
"args": [
"mcp-airq"
],
"env": {
"AIRQ_CONFIG_FILE": "<YOUR_AIRQ_CONFIG_FILE>",
"AIRQ_DEVICES": "<YOUR_AIRQ_DEVICES>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-airq": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-airq"
],
"env": {
"AIRQ_CONFIG_FILE": "<YOUR_AIRQ_CONFIG_FILE>",
"AIRQ_DEVICES": "<YOUR_AIRQ_DEVICES>"
}
}
}
}Claude Code
claude mcp add mcp-airq --env AIRQ_CONFIG_FILE=<YOUR_AIRQ_CONFIG_FILE> --env AIRQ_DEVICES=<YOUR_AIRQ_DEVICES> -- uvx mcp-airqRelated MCP servers
air-Q Cloud
Active
MCP server for air-Q Cloud API — access air quality data from anywhere
0
View repository →Python
Apache-2.0