Connects Claude to the U.S. Department of Housing and Urban Development's public APIs through Pipeworx's gateway infrastructure. The source doesn't list specific tools, but HUD typically exposes data on affordable housing programs, fair market rents, public housing locations, and homelessness statistics. You can either call tools directly once they're documented or use the ask_pipeworx function to query in plain English and let the gateway route to the right endpoint. Runs over streamable HTTP, so no local installation needed. Part of Pipeworx's larger collection of 673+ data sources, meaning you can add just this HUD connector or get the full gateway if you need broader government and commercial data access.
HUD MCP — U.S. Department of Housing and Urban Development APIs.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"hud": {
"url": "https://gateway.pipeworx.io/hud/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Hud data" })
The gateway picks the right tool and fills the arguments automatically.
MIT