Query 363+ datasets from the Western PA Regional Data Center. Property assessments, air quality, 311 requests, jail census, overdose data, parking, permits, violations — all queryable via SQL without downloading.
An Agent Skill — works with Claude Code, Cursor, Windsurf, Cline, Goose, and any agent that supports the open skills format.
npx skills add ianpcook/wprdc- Search datasets by keyword, organization, or topic
- SQL queries against live tables (no download required!)
- Property lookups by parcel ID or address
- Download resources as CSV, JSON, or GeoJSON
- 363+ datasets from Allegheny County, City of Pittsburgh, PRT, and more
# Search for datasets
wprdc.py search "property sales"
wprdc.py search "air quality" --org allegheny-county
# Property lookup by parcel ID
wprdc.py parcel 0028F00194000000
# SQL query (the killer feature!)
wprdc.py query 'SELECT "PROPERTYADDRESS", "FAIRMARKETTOTAL" FROM @assessments WHERE "PROPERTYCITY"='"'"'PITTSBURGH'"'"' LIMIT 5'
# Overdose trends
wprdc.py query 'SELECT case_year, COUNT(*) as deaths FROM @overdoses GROUP BY case_year ORDER BY case_year'
# Dataset info
wprdc.py info property-assessmentsUse @shortcut in SQL queries instead of long resource IDs:
| Shortcut | Dataset |
|---|---|
@assessments |
Property Assessments (584K parcels) |
@sales |
Property Sales |
@311 |
311 Service Requests |
@permits |
PLI Permits |
@violations |
PLI Violations |
@overdoses |
Fatal Accidental Overdoses |
@jail |
Jail Daily Census |
@air-quality |
Air Quality |
@fishfry |
Fish Fry Map |
| Command | Description |
|---|---|
search <query> |
Search datasets by keyword |
info <dataset> |
Get dataset details |
resources <dataset> |
List tables/files in a dataset |
fields <resource> |
Show column schema |
query <sql> |
Execute SQL against live data |
parcel <pin> |
Quick property lookup |
download <dataset> |
Export to CSV/JSON/GeoJSON |
orgs |
List publishing organizations |
groups |
List topic categories |
shortcuts |
Show query shortcuts |
Property & Housing
- 584K property assessments with values, sales, building details
- Real estate transactions since 2013
- Code violations and permits
Public Safety
- Jail daily census (demographics, trends)
- Fatal overdoses by year, drug type, location
- 911 EMS/Fire dispatches (2015-present)
Transportation
- Parking transactions
- Transit routes and ridership
Health & Environment
- Air quality monitor readings
- Temperature inversion forecasts
- Quote UPPERCASE columns:
"PROPERTYADDRESS"(lowercase works without:case_year) - Use LIMIT: Large tables timeout without limits
- Check fields first:
wprdc.py fields @assessments
MIT
- WPRDC Portal
- skills.sh — The open agent skills ecosystem