get_current_conditions
Current weather for Crosby, TX: temperature, sky, and precip chance.
Parameters
No parameters.
Raw schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}by reloru · JavaScript
Live Crosby, TX weather, river flood levels, local news & Crosby ISD school calendar.
Live Crosby, TX weather, river flood levels, local news & Crosby ISD school calendar.
Captured live from the server via tools/list.
Current weather for Crosby, TX: temperature, sky, and precip chance.
Parameters
No parameters.
{
"type": "object",
"properties": {},
"additionalProperties": false
}Forecast for Crosby, TX from the U.S. National Weather Service. Returns the 7-day day/night forecast, or upcoming hourly periods if `hours` is given.
| hours | integer | optional | Return this many upcoming hourly periods instead of the daily forecast. |
{
"type": "object",
"properties": {
"hours": {
"type": "integer",
"minimum": 1,
"maximum": 12,
"description": "Return this many upcoming hourly periods instead of the daily forecast."
}
},
"additionalProperties": false
}Active NWS weather alerts for Crosby, TX. Returns an empty list when none are active.
Parameters
No parameters.
{
"type": "object",
"properties": {},
"additionalProperties": false
}Recent local news headlines for Crosby, TX and nearby northeast Harris County communities, aggregated from public sources and filtered for relevance. Empty when nothing recent.
Parameters
No parameters.
{
"type": "object",
"properties": {},
"additionalProperties": false
}Upcoming Crosby ISD school-calendar events: first/last day of school, holidays, no-school and early-release days, testing windows, and campus activities.
| limit | integer | optional | Maximum events to return (default 15). |
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 60,
"description": "Maximum events to return (default 15)."
}
},
"additionalProperties": false
}Current water levels and NWS flood stages for the rivers and bayous that flood Crosby, TX and northeast Harris County (Cedar Bayou, San Jacinto River, Luce Bayou, and more). Each gauge reports its stage, flow, flood category, and thresholds.
Parameters
No parameters.
{
"type": "object",
"properties": {},
"additionalProperties": false
}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.
api.weather.gov). The homepage is a hub
with the highlights of everything below.Every page is also available in Mexican Spanish (es-MX) under an /es
prefix — e.g. /es, /es/hourly, /es/alerts.
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:
/api/weather: JSON with
current conditions, hourly, 7-day forecast, and alerts. Plus
/api/news,
/api/calendar, and
/api/water. Public, no auth./openapi.jsonhttps://crosbynews.com/mcp, with tools
get_current_conditions, get_forecast, get_alerts, get_crosby_news,
get_school_events, and get_river_levels. Discovery card at
/.well-known/mcp/server-card.json.Connect the MCP server from Claude Code:
claude mcp add --transport http crosbynews https://crosbynews.com/mcp
src/index.js is the entire app and
wrangler.jsonc is the config.npm install
npx wrangler dev # run locally
npx wrangler deploy # deploy (CI also deploys on push to main)
Independent project — not affiliated with the National Weather Service, NOAA, or any government agency. Weather data courtesy of the U.S. National Weather Service.
Hosted server - connect over the network, no local install.
https://crosbynews.com/mcpclaude_desktop_config.json
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://crosbynews.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.