local-houston-mcp
# Local Houston MCP
[](LICENSE)
[](https://nodejs.org/)
[](https://modelcontextprotocol.io/)
> **Your AI's local guide to Houston.** A Model Context Protocol (MCP) server giving Claude (and any MCP client) plain-English access to official Houston-area public data — no API keys, no logins.
**License:** Open source under **[Apache License 2.0](LICENSE)** — free to use, modify, and build on, including commercially. Please keep the [NOTICE](NOTICE) attribution when you redistribute.
**Built by:** [Ed Neuhaus](https://edneuhaus.com).
**Source:** https://github.com/mindwear-capitian/local-houston-mcp
**Part of a family:** [local-city-mcp-template](https://github.com/mindwear-capitian/local-city-mcp-template) — the spec, the template, and the full list of cities built so far.
> 🚧 **Early-stage.** Two tools live today (weather alerts, school ratings). More Houston/Harris-area civic and property data planned — see [CONTRIBUTING.md](CONTRIBUTING.md).
---
## Install
Add to your Claude Desktop config:
```jsonc
// claude_desktop_config.json
{
"mcpServers": {
"local-houston": {
"command": "npx",
"args": ["-y", "github:mindwear-capitian/local-houston-mcp"]
}
}
}
```
Restart Claude Desktop. No API keys required for any tool.
### Claude Code
```bash
claude mcp add local-houston npx -y github:mindwear-capitian/local-houston-mcp
```
---
## Try it
- *"Is there an active weather alert for Houston right now?"*
- *"What's the TEA rating for Houston ISD?"*
- *"Show me A-rated elementary schools in Harris county."*
---
## Tools (2 live)
| Tool | What it does |
|------|--------------|
| `houston_nws_alerts` | Active National Weather Service alerts (severe thunderstorm, tornado, flood, heat, freeze, fire weather) for a Houston location. Defaults to central Houston when no address given. |
| `houston_tea_schools` | Texas Education Agency school lookup — A-F accountability ratings + AskTED campus directory (statewide dataset). Search by campus, district, county, or city. Example districts: Houston ISD, Cypress-Fairbanks ISD, Katy ISD. |
| `about` | Version + capability summary. |
## Sources of Truth
| Domain | Source |
|--------|--------|
| Weather alerts | National Weather Service (api.weather.gov) |
| School ratings | Texas Education Agency Statewide Accountability Ratings 2022-2023 + AskTED directory (data.texas.gov) — statewide dataset, same source used by [local-austin-mcp](https://github.com/mindwear-capitian/local-austin-mcp) |
| Geocoding | U.S. Census geocoder |
## Architecture
Node.js (ES modules), `@modelcontextprotocol/sdk` over stdio. Built from [local-city-mcp-template](https://github.com/mindwear-capitian/local-city-mcp-template) — see that repo's `STANDARD.md` for the spec (hard rules, tool contract, testing bar, licensing pattern) this server follows. Every response includes a `source_url`.
## Contact
Built by [Ed Neuhaus](https://edneuhaus.com). Contributions welcome — see [CONTRIBUTING.md](CONTRIBUTING.md).
TDQS
Scored across 3 tools
Each tool serves a completely distinct purpose: server metadata, weather alerts, and school ratings. There is no overlap or ambiguity between them.
The two data tools follow a consistent 'houston_<domain>_<entity>' pattern, but 'about' breaks the pattern by being a generic verb. Minor deviation, but overall readable and predictable.
With three tools, the server is tightly scoped for a local Houston information service. Each tool has a clear purpose and the count feels appropriate for the niche domain.
The server covers weather alerts and school ratings, which are core local interests, but lacks other potential Houston-specific data (e.g., full forecasts, traffic). The note about attendance zones demonstrates awareness of limitations, so minor gaps remain.