housing_signal_scan
Pack: housing-intel · Endpoint: https://gateway.pipeworx.io/housing-intel/mcp
Scan 45+ housing indicators for anomalies and reversals. Flags unusual moves across rates, starts, sales, prices, wages, unemployment, and rent.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_fredKey | string | yes | FRED API key |
Example call
Arguments
{
"_fredKey": "your-housing-intel-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/housing-intel/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"housing_signal_scan","arguments":{"_fredKey":"your-housing-intel-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('housing_signal_scan', {
"_fredKey": "your-housing-intel-api-key"
});
Response shape
| Field | Type | Description |
|---|---|---|
scan_date | string | Today’s date in YYYY-MM-DD format |
signals | array | Detected anomalies and reversals across housing indicators |
Full JSON Schema
{
"type": "object",
"properties": {
"scan_date": {
"type": "string",
"description": "Today's date in YYYY-MM-DD format"
},
"signals": {
"type": "array",
"description": "Detected anomalies and reversals across housing indicators",
"items": {
"type": "object",
"properties": {
"indicator": {
"type": "string",
"description": "Name of the housing indicator"
},
"type": {
"type": "string",
"enum": [
"reversal",
"unusual",
"accelerating",
"turn",
"extreme"
],
"description": "Type of signal detected"
},
"message": {
"type": "string",
"description": "Human-readable signal description"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"housing-intel": {
"url": "https://gateway.pipeworx.io/housing-intel/mcp"
}
}
}
See Getting Started for client-specific install steps.