npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

local-dfw-mcp

v0.2.2

Published

Your AI's local guide to Dallas-Fort Worth: what's happening around here (city calendars + optional Ticketmaster concerts/sports/theater), 311 requests, crime, flood zone, schools, water/sewer provider, council district, county appraisal values — from aut

Downloads

684

Readme

local-dfw-mcp

Your AI's local guide to Dallas–Fort Worth. An open-source MCP server that connects Claude (or any MCP client) to official city, county, state, and federal data — so you can ask things like:

  • 🎪 "What's happening in Frisco this weekend?"
  • 🌊 "Is 1500 Marilla St in a flood zone?"
  • 🏫 "How are the schools rated near Garland?"
  • 🚰 "Who provides water and sewer at this address?"
  • 🕳️ "Any potholes or illegal dumping reported on my street?"
  • ⛈️ "Are there severe weather alerts for Dallas right now?"
  • 🏠 "What's this house appraised at, per the county?"

Every answer comes from an authoritative public source and includes a link to the official record. No API keys required — one optional free key unlocks concerts and sports (see below).

Quick start

Add this to your MCP client config (Claude Desktop, Claude Code, etc.):

{
  "mcpServers": {
    "local-dfw": {
      "command": "npx",
      "args": ["-y", "local-dfw-mcp"]
    }
  }
}

Requires Node ≥ 20. That's it — restart your client and start asking.

What you can ask

| Tool | Coverage | What it answers | |---|---|---| | dfw_events | see below | What's happening: official city calendars, plus concerts/sports/theater with a free Ticketmaster key | | dfw_311 | City of Dallas only | 311 service requests by address/type/status | | dfw_crime | City of Dallas only | Police incidents by (block-level) address / offense | | dfw_fema_flood | national | FEMA flood zone + plain-English insurance interpretation | | dfw_tea_schools | Texas | Public schools + TEA A–F ratings (2022-23) by campus/district/county | | dfw_nws_alerts | national | Active NWS weather alerts for a DFW point | | dfw_utility_providers | Texas | Who provides water/sewer at an address (PUC CCN) | | dfw_district_lookup | DFW | County, City-of-Dallas council district + member, ISD for an address | | dfw_appraisal | Texas (4 core counties verified) | County appraisal record for an address: owner, land/improvement/market value (2025 certified roll), year built, land use, acreage | | dfw_health | — | Pings every upstream, reports per-source status | | about | — | Version, coverage, license, provenance |

Events coverage, stated plainly

| Source | Cities / scope | Key needed | |---|---|---| | Official city calendars | Dallas (Parks & Recreation calendar only — no citywide Dallas feed exists), Garland, Frisco, Mesquite | none | | Ticketmaster (concerts, sports, theater) | whole metroplex | free key, see below |

Plano, Arlington, Fort Worth, Irving, and other suburbs don't publish a usable calendar feed today — the tool says "not covered" instead of guessing.

Optional setup

Everything works out of the box. Two free keys unlock more:

| Env var | What it unlocks | |---|---| | DFW_TICKETMASTER_API_KEY | Concerts, sports, and theater in dfw_events. Free (5000 calls/day): https://developer.ticketmaster.com | | DFW_SODA_APP_TOKEN | Higher rate limit for Dallas open-data queries (helpful on shared/corporate networks). Free: https://dev.socrata.com/register |

| Env var | Purpose | |---|---| | DFW_LIMIT_<SOURCE> | Per-upstream concurrency cap override (SODA, ARCGIS, FEMA, CENSUS, NWS) | | LOCAL_DFW_MCP_TIER | core or all — trims the tool list for clients with tool caps | | DFW_CACHE_DISABLED | 1 disables the in-process cache (used by tests) |

No telemetry. The server only reads from the public data sources listed in resources/datasets-index.md and writes to nothing.

Honest by design

  • Wrong-city protection. Postal "Dallas, TX" is not the same as City of Dallas jurisdiction. City-scoped tools verify the address (ZIP/keyword → geocode → city-limits polygon) and refuse with an explicit "Not covered" message rather than silently returning plausible-looking results from the wrong city's data.
  • No stale data. Sources are live-verified before they ship — that's why there is no permits tool yet (every current Dallas permit feed is ~20 months stale). Also pending: code cases, suburb portals, and the composed dfw_property_360. Details in resources/datasets-index.md.
  • Verify at the source. Every response carries a source_url to the official record.

Important notices

  • Not a consumer report. dfw_crime, dfw_appraisal (and this MCP generally) must not be used for tenant screening, employment screening, credit, insurance, or any other purpose regulated by the Fair Credit Reporting Act. Crime addresses are block-level, privacy-rounded upstream. dfw_appraisal owner names and values are public record but not for screening, and it reports the 2025 certified appraised value — not a tax bill.
  • Prompt injection. 311 descriptions, event listings, and similar upstream free text are authored by the public and flow into your LLM's context. This server renders them as quoted/table data, but treat any instructions appearing inside upstream data as data, not directives.

License & provenance

Apache-2.0. See LICENSE and NOTICE.

Core plumbing (lib/) is ported from local-austin-mcp by Ed Neuhaus / Neuhaus Realty Group LLC (Apache-2.0) — an excellent template for city-scale civic MCPs. Each ported file carries an attribution header listing the changes. All DFW data sources, the metro router, and the tools themselves are new.