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 |
|---|---|---|---|
variables | string | yes | Comma-separated variables (e.g., “STARTS” for housing starts, “UNDER_CONSTRUCTION”, “COMPLETIONS”). |
time | string | yes | Time period (e.g., “2024-01” for January 2024). |
region | string | no | Census region filter (e.g., “NE” for Northeast, “MW” for Midwest, “S” for South, “W” for West). Optional. |
_apiKey | string | yes | Census API key |
Example call
Arguments
{
"variables": "STARTS",
"time": "2024-01",
"_apiKey": "your-census-api-key"
}
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":{"variables":"STARTS","time":"2024-01","_apiKey":"your-census-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('census_housing_starts', {
"variables": "STARTS",
"time": "2024-01",
"_apiKey": "your-census-api-key"
});
More examples
{
"variables": "STARTS,UNDER_CONSTRUCTION,COMPLETIONS",
"time": "2024-01",
"region": "W",
"_apiKey": "your-census-api-key"
}
Response shape
Always returns: variables, time, region, results
| Field | Type | Description |
|---|---|---|
variables | array | Variable codes requested |
time | string | Time period queried |
region | string | Census region or ‘all’ if none specified |
results | array | Array of housing starts records |
Full JSON Schema
{
"type": "object",
"properties": {
"variables": {
"type": "array",
"items": {
"type": "string"
},
"description": "Variable codes requested"
},
"time": {
"type": "string",
"description": "Time period queried"
},
"region": {
"type": "string",
"description": "Census region or 'all' if none specified"
},
"results": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Housing starts data rows"
},
"description": "Array of housing starts records"
}
},
"required": [
"variables",
"time",
"region",
"results"
]
}
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.