aqs_monitors

Pack: epa-aqs · Endpoint: https://gateway.pipeworx.io/epa-aqs/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/aqs_monitors for the schema, then POST the same URL with its arguments for the data.

EPA AQS monitor metadata for an area — which pollutants are measured where, by which agency, with what method and network membership (NCore, PAMS, SLAMS), the monitoring objective, and each monitor’s open and close dates. Use it to find the site codes aqs_sample_data needs and to check whether a place is monitored at all. Sourced from the EPA Air Quality System. Requires an EPA AQS email + key.

Parameters

NameTypeRequiredDescription
paramstringyesPollutant parameter code(s), comma-separated, max 5, e.g. “44201”
bdatestringyesStart date YYYY-MM-DD
edatestringyesEnd date YYYY-MM-DD — same calendar year as bdate
bystringnoGeography: “state” (default), “county”, “site”, “cbsa”, “box”
statestringnoTwo-digit state FIPS
countystringnoThree-digit county FIPS
sitestringnoFour-digit site number
cbsastringnoFive-digit CBSA code
bboxstringnoFor by=box: “minLon,minLat,maxLon,maxLat”
limitnumbernoMax monitor rows to return (default 200, max 2000)
emailstringnoThe email the AQS key was issued to, if not folded into _apiKey
_apiKeystringnoEPA AQS credential as ”:”, or just "" with email= set. Register at https://aqs.epa.gov/data/api/signup?email=

Example call

Arguments

{
  "param": "44201",
  "bdate": "2024-01-01",
  "edate": "2024-12-31",
  "by": "county",
  "state": "37",
  "county": "183"
}

curl

curl -X POST https://gateway.pipeworx.io/epa-aqs/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"aqs_monitors","arguments":{"param":"44201","bdate":"2024-01-01","edate":"2024-12-31","by":"county","state":"37","county":"183"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('aqs_monitors', {
  "param": "44201",
  "bdate": "2024-01-01",
  "edate": "2024-12-31",
  "by": "county",
  "state": "37",
  "county": "183"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "epa-aqs": {
      "url": "https://gateway.pipeworx.io/epa-aqs/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026