hud_fair_market_rents

Pack: hud · Endpoint: https://gateway.pipeworx.io/hud/mcp

Get Fair Market Rent ceilings by bedroom count (0–4+) for a specific area and year. Returns rent limits by bedroom count. Use to set voucher payment standards and rental assistance caps.

Parameters

NameTypeRequiredDescription
state_codestringyesTwo-letter state code (e.g., “CA”, “NY”, “TX”). Required to get state-level summary.
entity_idstringnoFIPS code or ZIP code to get FMR for a specific area. Omit to get all areas in the state.
yearnumbernoFiscal year (e.g., 2024). Omit for the most recent year.
_apiKeystringyesHUD API token

Example call

Arguments

{
  "state_code": "CA",
  "_apiKey": "your-hud-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/hud/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hud_fair_market_rents","arguments":{"state_code":"CA","_apiKey":"your-hud-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('hud_fair_market_rents', {
  "state_code": "CA",
  "_apiKey": "your-hud-api-key"
});

More examples

{
  "state_code": "NY",
  "entity_id": "36061",
  "year": 2024,
  "_apiKey": "your-hud-api-key"
}

Response shape

Always returns: state, entity_id, year, data

FieldTypeDescription
statestringTwo-letter state code provided in request
entity_idstring | nullFIPS or ZIP code if provided, null otherwise
yearnumber | stringFiscal year requested or ‘latest’
dataobjectFair Market Rent data from HUD API
Full JSON Schema
{
  "type": "object",
  "properties": {
    "state": {
      "type": "string",
      "description": "Two-letter state code provided in request"
    },
    "entity_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "FIPS or ZIP code if provided, null otherwise"
    },
    "year": {
      "type": [
        "number",
        "string"
      ],
      "description": "Fiscal year requested or 'latest'"
    },
    "data": {
      "type": "object",
      "description": "Fair Market Rent data from HUD API"
    }
  },
  "required": [
    "state",
    "entity_id",
    "year",
    "data"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "hud": {
      "url": "https://gateway.pipeworx.io/hud/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026