census_housing_starts
Pack: census · Endpoint: https://gateway.pipeworx.io/census/mcp
Get residential construction pipeline by geography: new starts, units under construction, and completed units. Returns housing supply and activity trends.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
time | string | no | Month as “YYYY-MM” (e.g. “2026-04”), or “from 2026-01 to 2026-04” for a range. Defaults to the latest published month. |
category_code | string | no | ASTARTS (annual rate, default), STARTS, COMPLETIONS, UNDERCONST, AUTHNOTSTD, or “ALL”. |
_apiKey | string | no | Census API key |
Example call
Arguments
{
"category_code": "ASTARTS"
}
curl
curl -X POST https://gateway.pipeworx.io/census/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"census_housing_starts","arguments":{"category_code":"ASTARTS"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('census_housing_starts', {
"category_code": "ASTARTS"
});
More examples
{
"category_code": "ASTARTS",
"time": "2026-04"
}
Response shape
| Field | Type | Description |
|---|---|---|
time | string | Time period queried |
date | string | |
category_code | string | |
headline | object | |
units | string | |
note | string | |
count | number | |
results | array | Array of housing starts records |
Full JSON Schema
{
"type": "object",
"properties": {
"time": {
"type": "string",
"description": "Time period queried"
},
"date": {
"type": "string"
},
"category_code": {
"type": "string"
},
"headline": {
"type": "object",
"properties": {
"category_code": {
"type": "string"
},
"value_thousands": {
"type": "number"
},
"units": {
"type": "string"
},
"geography": {
"type": "string"
},
"period": {
"type": "string"
}
}
},
"units": {
"type": "string"
},
"note": {
"type": "string"
},
"count": {
"type": "number"
},
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"cell_value": {
"type": "string"
},
"category_code": {
"type": "string"
},
"data_type_code": {
"type": "string"
},
"seasonally_adj": {
"type": "string"
},
"geo_level_code": {
"type": "string"
},
"time_slot_id": {
"type": "string"
},
"time_slot_name": {
"type": "string"
},
"time": {
"type": "string"
}
},
"description": "Housing starts data rows"
},
"description": "Array of housing starts records"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"census": {
"url": "https://gateway.pipeworx.io/census/mcp"
}
}
}
See Getting Started for client-specific install steps.