Server data from the Official MCP Registry
Live CRE analysis: Federal Reserve rates, Census 1/3/5-mile demographics, DCF models, IC memos.
Live CRE analysis: Federal Reserve rates, Census 1/3/5-mile demographics, DCF models, IC memos.
Remote endpoints: streamable-http: https://cre-intelligence-mcp.onrender.com/mcp
CRE Intelligence MCP is a well-intentioned tool for pulling live financial data (FRED, Census) and generating CRE analysis. Code quality is generally sound with proper error handling, input validation, and safe API interactions. However, three moderate-severity issues reduce confidence: (1) API keys are passed through environment variables in Claude Desktop config without explicit secure storage guidance, (2) the Claude API key is exposed in the example config file, and (3) no authentication gates the MCP server itself — anyone with access to the HTTP endpoint can call tools. Permissions are appropriate for the stated purpose (financial data APIs, Census data, network calls). Low-severity findings include broad exception handling and some input validation gaps that should be addressed. Supply chain analysis found 7 known vulnerabilities in dependencies (1 critical, 1 high severity).
3 files analyzed · 16 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Available as Local & Remote
This plugin can run on your machine or connect to a hosted endpoint. during install.
From the project's GitHub README.
Live market data for commercial real estate analysis — inside Claude.
Connect this MCP to Claude Desktop and instantly access Federal Reserve interest rates, Census Bureau demographics, DCF modeling, rent roll parsing, lease abstraction, and IC memo generation — all from a single prompt.
"Analyze this deal: 2201 South Blvd, Charlotte NC. NOI $400k, asking $6M, retail strip."
→ Pulls live SOFR from the Fed. Pulls Census demographics for that exact block. Builds a full levered 10-year DCF. Writes an institutional-quality IC memo. 30 seconds.
The #1 problem with AI in CRE: 66% of professionals use it daily, but only 5% trust it for actual deal decisions.
The reason? AI guesses at rates and demographics. A DCF built on a hallucinated SOFR rate is worthless.
This MCP fixes that. Every number comes from a verified public source:
Zero data licensing fees. Zero hallucinations on financial inputs.
| Tool | What it does | Data source |
|---|---|---|
get_current_rates | Live SOFR, 10yr Treasury, Fed Funds + implied cap ranges by property type | FRED |
get_inflation_data | CPI, shelter inflation, rent CPI + DCF rent growth guidance | FRED |
get_cre_market_data | CRE price index, C&I loan trends, delinquency rates, credit spreads | FRED |
get_market_demographics | Median income, employment, vacancy, rents for any US address | Census Bureau |
get_radius_demographics | 1/3/5-mile trade-area rings: population, weighted income, renter share, rents | Census Bureau |
analyze_rent_roll | Paste PDF text → structured JSON: tenant, SF, rent, dates, expirations | Claude AI |
abstract_lease | Paste lease text → term, rent schedule, TI, options, red flags | Claude AI |
flag_lease_risks | Rent roll JSON → rollover risk, concentration risk, due diligence checklist | Claude AI |
build_dcf_model | Full levered 10-year DCF with live rates auto-fetched from FRED | Python + FRED |
generate_deal_memo | Address + NOI + price → full IC memo with live rates and demographics | Claude AI + FRED + Census |
Prompt: "Get me current interest rates"
SOFR: 3.63% (June 8, 2026)
SOFR 30-day: 3.59%
10yr Treasury: 4.55%
5yr Treasury: 4.29%
Fed Funds: 3.63%
Implied cap rates (spread over 10yr T):
Core Multifamily: 5.30% – 6.05%
Core Industrial: 5.55% – 6.30%
Core Office: 6.05% – 7.05%
Value-Add: 6.05% – 7.05%
Loan rate guidance:
Floating: SOFR + 150–250bps = ~5.38%–5.88%
Fixed: 10yr T + 150–200bps = ~6.05%–6.55%
Prompt: "Analyze this deal: 2201 South Blvd Charlotte NC, NOI $400k, asking $6M, retail strip"
The MCP automatically chains get_current_rates + get_market_demographics + build_dcf_model + generate_deal_memo and returns a full IC memo including:
Entry Cap Rate: 6.67% (+212bps over 10yr Treasury)
Loan Rate: 5.38% (derived from live SOFR 3.63% + 175bps)
Year 1 DSCR: 1.53x
IRR: 14.6%
Equity Multiple: 3.11x
Census Tract demographics (2023 ACS):
Median HHI: $141,419
Employment rate: 97.2%
College educated: 64.9%
Vacancy rate: 8.6%
Recommendation: GO — subject to rent roll review and comp analysis.
Add this to your claude_desktop_config.json and restart Claude Desktop:
{
"mcpServers": {
"cre-intelligence": {
"type": "streamable-http",
"url": "https://cre-intelligence-mcp.onrender.com/mcp"
}
}
}
If your MCP client only supports stdio servers, use the mcp-remote bridge instead:
{
"mcpServers": {
"cre-intelligence": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://cre-intelligence-mcp.onrender.com/mcp"]
}
}
}
Free during beta. All data fetching runs server-side.
git clone https://github.com/Zwondra/cre-intelligence-mcp
cd cre-intelligence-mcp
python3.11 -m venv venv
venv/bin/pip install -r requirements.txt
cp .env.example .env
# Add your API keys to .env
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"cre-intelligence": {
"command": "/path/to/cre-intelligence-mcp/venv/bin/python3",
"args": ["/path/to/cre-intelligence-mcp/server.py"],
"env": {
"ANTHROPIC_API_KEY": "sk-ant-...",
"FRED_API_KEY": "your_fred_key",
"CENSUS_API_KEY": "your_census_key"
}
}
}
}
Restart Claude Desktop. The tools will appear automatically.
Open Claude Desktop and say:
"Get me current interest rates"
You should see it call get_current_rates and return live Federal Reserve data.
The document tools (analyze_rent_roll, abstract_lease) work by pasting PDF text directly into the prompt. In Claude Desktop:
The tool extracts every tenant, suite, SF, rent, lease dates, and expiration into structured JSON — then flag_lease_risks can immediately analyze it for rollover and concentration risk.
| Source | What | Cost |
|---|---|---|
| FRED (Federal Reserve) | SOFR, Treasury yields, Fed Funds, CPI, CRE price index | Free |
| Census Bureau ACS | Income, employment, housing, rents by census tract | Free |
| Anthropic Claude | Document parsing, risk analysis, memo generation | Pay per use |
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.