streamable-httpMITupdated 8d ago
Live weather and local news for Crosby, Texas β fast, ad-free, no trackers. The whole site is a single Cloudflare Worker with no framework and no runtime dependencies.
What can you do with Crosby, TX Weather?
crosbynews.com
Live weather and local news for Crosby, Texas β fast, ad-free, no trackers. The whole site is a single Cloudflare Worker with no framework and no runtime dependencies.
β crosbynews.com
What it does
- Weather β current conditions, a 12-hour
strip, a 7-day forecast, and any active alerts for Crosby, TX (northeast
Harris County), refreshed every 15 minutes from the U.S. National Weather
Service (
api.weather.gov). The homepage is a hub with the highlights of everything below. - Hourly β the full 48-hour forecast table.
- Radar β the NWS KHGX (Houston-Galveston) radar loop, which covers Crosby.
- Alerts β active NWS alerts plus a plain-language severe-weather guide, with opt-in push notifications for life-threatening warnings.
- Water Levels β live river/bayou flood gauges for the waters around Crosby (NOAA/NWS NWPS).
- Fishing β live USGS water conditions (temperature, dissolved oxygen, pH, clarity) for the waters people fish near Crosby: Lake Houston, the San Jacinto forks, the Trinity River, and nearby bayous.
- Tropics β the Atlantic tropical outlook: named storms plus the areas NHC is watching for development from the National Hurricane Center.
- Air Quality β the measured U.S. Air Quality Index for the Houston-Galveston-Brazoria area (which includes Crosby) from EPA/AirNow monitors, with a per-pollutant breakdown and health guidance.
- Pollen & Mold β the Houston Health Department's measured daily tree, weed, grass, and mold count for the Crosby area, published weekday mornings.
- Traffic β road incidents and lane closures on the Crosby-area corridors, from Houston TranStar.
- News β local headlines for Crosby and nearby communities.
- School Calendar β Crosby ISD calendar (holidays, early-release, testing, athletics) with one-tap subscribe links.
- Burn Ban Status β the current outdoor- burning ban status for Harris County, TX (which includes Crosby) from the Texas A&M Forest Service, countywide only.
- Emergency β emergency numbers, alert channels, flood tools, and hurricane-prep resources for NE Harris County.
- About β what the site is and where the data comes from; Developers β the API/agent surface on one page.
- Privacy β no cookies, no trackers, no personal data; Contact β general and security addresses; Sitemap β every page and endpoint.
Every page is also available in Mexican Spanish (es-MX) under an /es
prefix β e.g. /es, /es/hourly, /es/alerts.
Built for agents, too
Every page is content-negotiated β send Accept: text/markdown (or add
?format=md to any URL) for a clean Markdown rendering. The site also exposes:
- REST API β
/api/weather: JSON with current conditions, hourly, 7-day forecast, and alerts. Plus/api/news,/api/calendar,/api/water,/api/tropics,/api/air,/api/pollen,/api/burn-ban,/api/traffic,/api/fishing, and/api/health(site liveness, when each feed last tried to refresh and whether it worked, and when its data last actually changed). Public, no auth. - OpenAPI 3.1 β
/openapi.json - MCP server (Streamable HTTP) β
https://crosbynews.com/mcp, with toolsget_current_conditions,get_forecast,get_alerts,get_tropical_outlook,get_air_quality,get_pollen,get_burn_ban,get_river_levels,get_fishing,get_traffic,get_crosby_news,get_school_events,get_emergency_contacts, andget_radar(a live radar image, inline). Discovery card at/.well-known/mcp/server-card.json. - llms.txt β plain-language site summary for LLMs.
Connect the MCP server from Claude Code:
claude mcp add --transport http crosbynews https://crosbynews.com/mcp
Stack
- Cloudflare Workers (ES modules) + Workers KV for the cached forecast.
- No framework and no runtime dependencies β the Worker imports nothing. The
source under
src/is bundled by Wrangler (esbuild) at deploy time, which CI exercises on every pull request viawrangler deploy --dry-run.wrangler.jsoncis the config. - A 15-minute cron refreshes the cached NWS forecast and alerts, plus river gauges, fishing-water conditions and road incidents on every tick β and, on a slower cadence, the tropical outlook (~1h JuneβNovember hurricane season, ~24h the rest of the year), the pollen count (weekday mornings only, once that day's count posts), the burn-ban status (~4h) and the school calendar (~24h). Local news is the exception: it is written out-of-band, because Google News blocks Worker IPs.
- Data: U.S. National Weather Service (public domain), NOAA NWPS and NHC, EPA (UV), EPA/AirNow (measured air quality, Open-Meteo modeled fallback), the Houston Health Department (pollen & mold), the Texas A&M Forest Service (burn-ban status), the U.S. Geological Survey (fishing-water conditions), Houston TranStar (traffic), Crosby ISD, and Google News.
Develop
npm install
npx wrangler dev # run locally
npx wrangler deploy # deploy (CI also deploys on push to main)
License
MIT β the code is free to reuse. The live site's DATA is not: it's
sourced from NWS, NOAA, EPA/AirNow, HHD, USGS, Houston TranStar, Crosby ISD, and
Google News under each provider's own terms, and com.crosbynews/weather
(the published MCP listing) is this project's own namespace, not something a
fork inherits.
Independent project β not affiliated with the National Weather Service, NOAA, or any government agency. Weather data courtesy of the U.S. National Weather Service.
Install
Add Crosby, TX Weather to your client. Pick the one you use.
claude mcp add --transport http crosby-tx-weather https://crosbynews.com/mcpcodex mcp add crosby-tx-weather --url https://crosbynews.com/mcp{
"mcpServers": {
"crosby-tx-weather": {
"url": "https://crosbynews.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"crosby-tx-weather": {
"type": "http",
"url": "https://crosbynews.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"crosby-tx-weather": {
"url": "https://crosbynews.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"crosby-tx-weather": {
"serverUrl": "https://crosbynews.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint β no local install
Version history
| Versions | Published |
|---|---|
| 1.6.0Latest | Aug 23, 2026 |
| 1.5.0 | Jul 26, 2026 |
| 1.3.0 | Jul 17, 2026 |
| 1.2.0 | Jul 16, 2026 |
| 1.1.0 | Jul 14, 2026 |
| 1.0.0 | Jul 13, 2026 |