
Connects Claude to Altos Research's real estate market intelligence platform through the Pipeworx gateway. The source doesn't list specific tools, but Altos specializes in residential real estate data like median prices, inventory levels, days on market, and market trend analytics across U.S. regions. You can query it directly or use the ask_pipeworx interface to pose questions in plain English and let the gateway route to the right endpoint. Useful when you need current housing market metrics for analysis, reporting, or property research. Part of a larger gateway that includes 673+ data sources if you need to combine real estate data with other APIs.
Altos Research is the industry's standard for weekly-cadence US real estate market statistics: median list prices, price reductions, days on market, inventory by ZIP / metro / state, broken out by property type (single-family, condo) and market quartile. Where MLS data is fragmented and lagged, Altos aggregates and publishes weekly.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
Most public housing data (Census ACS, FRED home price index) updates monthly or quarterly. Altos updates weekly with the data agents and lenders actually use to gauge market temperature. If an agent is answering "is this market hot or cold right now?" the Altos data is most fit-for-purpose.
Common flows:
altos_market_stats({region: "us-co-denver"}) → median list, days on market, inventory, weekly trend.res_type: "single_family" or "condo".quartile: "FIRST" to focus on the bottom-quartile market (entry-level), "FOURTH" for luxury.Used by the housing_property_report and housing_market_brief compounds.
Altos is a paid commercial data product. Two paths:
_altosKey._altosKey needed.The vertical option is the common case — most agents using Altos also want ATTOM, FRED, and BLS for housing analysis. Bundling them is cheaper than separate keys.
Altos uses geo-coded region IDs:
| Format | Example |
|---|---|
| National | us_national |
| State | us-co (Colorado) |
| Metro | us-co-denver (Denver MSA) |
| ZIP | us-co-denver-80202 |
Smaller geographies have noisier data — single-ZIP weekly stats can swing wildly with low listing counts.
Weekly, typically published Monday or Tuesday for the prior week's data. Pipeworx caches with 24-hour TTL; intra-week, the same number is returned (Altos doesn't intra-week update).
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"altos": {
"url": "https://gateway.pipeworx.io/altos/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/altos/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Altos data" })
The gateway picks the right tool and fills the arguments automatically.
MIT