Skip to main content
Glama
jbechtel-97

dealflowpro-mcp-server

by jbechtel-97

DealFlowPro MCP Server

dealflowpro-mcp-server MCP server

Analyze multifamily real estate deals from Claude Code, Cursor, Claude Desktop, or any MCP-compatible client. The first real estate underwriting tool in the MCP ecosystem.

DealFlowPro is an AI-powered multifamily deal analysis platform. This MCP server wraps the DealFlowPro REST API, giving AI agents access to institutional-grade underwriting calculations.

Demo

Related MCP server: Estaite Solutions

What You Can Do

Ask Claude naturally and it calls the right tool:

  • "Analyze this 24-unit deal in Charlotte — asking $2M, $13.6K/mo rent, $5.5K expenses"

  • "Score this deal: 12 units, $1.5M, $9K monthly income"

  • "What's the max I should offer on a property with $28.8K/mo rent if I want 8% cash-on-cash?"

  • "Is this property in a flood zone? 2909 Burgess Dr, Charlotte, NC"

Tools

Tool

Description

analyze_deal

Full deal analysis: cap rate, DSCR, cash-on-cash, IRR, DFP Score (0-100), max offer price, yearly cashflows

score_deal

Quick screening: DFP Score + key metrics

reverse_calc

Max offer price from target returns (cap rate, CoC, DSCR, IRR)

market_data

Flood zone, neighborhood income vs state median, job growth for any address

All four carry MCP 2025-06-18 annotations (title, readOnlyHint, destructiveHint, idempotentHint, openWorldHint). Every tool is read-only.

Install as a Claude plugin

This repo doubles as a Claude Code / Cowork plugin. The plugin connects to the remote server at https://dealflowpro.io/mcp rather than the npm package above, which means:

  • Eight tools instead of four. Adds list_my_deals, get_deal_analysis, get_my_criteria, and portfolio_summary — your saved deals, buy-box criteria, and pipeline, scoped to your account.

  • OAuth instead of an API key. No DFP_API_KEY to export; you sign in to your DealFlowPro account when the plugin connects.

claude --plugin-dir /path/to/dealflowpro-mcp-server

Use the npm package below instead if you want a local stdio server, prefer API key auth, or are wiring DealFlowPro into a non-Claude MCP client.

For Institutional AI Teams

DealFlowPro is built to slot into AI eval pipelines and production AI stacks. The MCP server (this package, plus the remote endpoint at https://dealflowpro.io/mcp) wraps the same engine as the REST API — schema-strict, idempotent, predictable.

Auth + scoping. Every tool call requires a Bearer API key. Calls are scoped to the account that issued the key — no cross-tenant access path. Per-tool audit lines land in your account's logs/mcp_tool_calls.log capturing tool name + flattened arg keys (not values) — usage is auditable without exposing deal contents.

Rate limits per tier.

Tier

Daily limit

Monthly

Cost

Free

5 requests, lifetime

free, no card

Pay-as-you-go

balance-based

per credits

$1/request

Essentials

50 req/day

~1,500

$79/mo

Premium

200 req/day

~6,000

$149/mo

Enterprise

1,000 req/day

~30,000

$399/mo

Rate limit headers (X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset) returned on every response. 429 responses include Retry-After.

Error codes. Stable, documented at dealflowpro.io/api/docs/#errors — all errors are JSON {success: false, error: {code, message}} shape. Codes: invalid_input (400), invalid_json (400), unauthorized (401), tier_required (403), method_not_allowed (405), payload_too_large (413), rate_limit_exceeded (429), internal_error (500).

Tool schemas. Each MCP tool has a schema-strict input definition. Call tools/list against the remote endpoint to get the canonical schemas at runtime; the REST OpenAPI spec covers the same shapes (the four MCP tools map 1:1 to the four REST endpoints).

Eval harness pattern. For benchmarking, the recommended pattern: maintain a fixture set of (deal payload → expected metrics) pairs, run each against score_deal (lowest cost, ~$0.01/call), assert metrics within tolerance. The endpoint is deterministic — same inputs produce the same outputs.

Data handling. Request payloads are processed in memory and not persisted to disk. TLS 1.2+ in transit. Anthropic API calls (when DealFlowPro internally uses Claude for document extraction) flow through DealFlowPro's zero-data-retention Anthropic workspace. Full posture: dealflowpro.io/security#api-mcp-data-handling.

Setup

You have two install paths — pick the one that matches your client.

Path A — Remote MCP URL (no local install)

Use this for claude.ai web (Custom Connectors), Claude Code with HTTP transport, or Claude API mcp_servers. The endpoint is https://dealflowpro.io/mcp (Streamable HTTP, MCP 2025-06-18).

claude.ai web / Claude Desktop: DealFlowPro is not in Anthropic's Connectors Directory, so add it as a custom connector — Customize → Connectors → "Add custom connector" → name it DealFlowPro, paste https://dealflowpro.io/mcp → Add → Connect → sign in to DealFlowPro → click Allow. OAuth handles auth automatically (no API key to manage). Then in a chat, click "+" → Connectors → toggle DealFlowPro on.

Add DealFlowPro to Claude → — opens the dialog with the name and URL pre-filled. You still review and confirm before anything is added.

Team / Enterprise plans: members cannot add custom connectors themselves. An organization Owner adds it once under Organization settings → Connectors → Add → Custom (type: Web), and each member then connects their own DealFlowPro account from Customize → Connectors.

Claude Code (HTTP):

claude mcp add dealflowpro \
  --transport http \
  --url https://dealflowpro.io/mcp \
  --header "Authorization: Bearer dfp_sk_your_key_here"

Claude API:

POST https://api.anthropic.com/v1/messages
anthropic-beta: mcp-client-2025-11-20

{
  "mcp_servers": [{
    "type": "url",
    "url": "https://dealflowpro.io/mcp",
    "name": "dealflowpro",
    "authorization_token": "dfp_sk_your_key_here"
  }],
  ...
}

Get a Bearer key (free 5-request key, no card, or pay-as-you-go credits) at dealflowpro.io/api.

Full setup details + Connected Apps revocation: dealflowpro.io/api/docs#mcp.

Path B — Local stdio (this npm package)

Use this anywhere you want the MCP server running locally instead of remote — or for a client that has no remote-URL path of its own. Claude Desktop supports both: remote via Settings → Connectors, or the local config below.

1. Get an API key. Visit dealflowpro.io/api to claim a free 5-request key (no card) or buy pay-as-you-go credits. Delivered by email.

2. Add to your client.

Claude Desktop — claude_desktop_config.json:

{
  "mcpServers": {
    "dealflowpro": {
      "command": "npx",
      "args": ["-y", "dealflowpro-mcp"],
      "env": {
        "DFP_API_KEY": "dfp_sk_your_key_here"
      }
    }
  }
}

Claude Code:

claude mcp add dealflowpro -e DFP_API_KEY=dfp_sk_your_key_here -- npx -y dealflowpro-mcp

Use It

Just ask Claude about a deal. It automatically picks the right tool.

Example Output

## Deal Analysis Results

**DFP Score: 19/100 (Poor)**

### Key Metrics
| Metric | Value |
|--------|-------|
| Cap Rate | 4.48% |
| DSCR | 0.86 |
| Cash-on-Cash | -1.95% |
| IRR | -12.17% |
| NOI | $89,524 |

### Max Offer Price
**$1,197,476** (binding constraint: cash-on-cash)

API Documentation

Full REST API docs at dealflowpro.io/api/docs

Pricing

  • Pay-as-you-go: $1/API request, starting at $5

  • Essentials: 50 API requests/day included ($79/mo)

  • Premium: 200 requests/day + reverse calculator ($149/mo)

  • Enterprise: 1,000 requests/day ($399/mo)

Requirements

  • Node.js 18+

  • DealFlowPro API key

About DealFlowPro

DealFlowPro automates multifamily underwriting for 2-200 unit properties. Upload a broker email or OM and get a full investment analysis in 10 minutes instead of 2 hours. Used by operators, syndicators, and PE firms to screen deals faster.

dealflowpro.io

License

MIT

Available Tools

4 tools
analyze_dealAnalyze Multifamily DealA
Read-onlyIdempotent

Analyze a multifamily real estate deal. Returns cap rate, cash-on-cash, DSCR, IRR, DFP Score (0-100), max offer price, and full financial projections. Use this when someone asks about analyzing a property, evaluating a deal, or running the numbers on a multifamily investment.

ParametersJSON Schema
NameRequiredDescriptionDefault
unitsNoNumber of apartment units
year_builtNoYear the property was built
assumptionsNoOverride default underwriting assumptions
monthly_incomeYesTotal monthly rental income in dollars
purchase_priceYesAsking/purchase price in dollars
monthly_expensesNoTotal monthly operating expenses in dollars (if omitted, 50% of income is assumed)
property_addressNoProperty location (city, state)

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the agent knows it's a safe, read-only operation. The description adds no extra behavioral context (e.g., side effects, auth requirements, rate limits), relying on the annotations to carry the safety profile.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the purpose and outputs, followed by usage context. Every sentence earns its place; no unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description lists all key return metrics and gives usage context. It doesn't explain edge cases, but since the annotations confirm read-only/idempotent behavior and the schema covers parameters, it is fairly complete for a straightforward analysis tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with every parameter having a description, including defaults for assumptions and the fallback for monthly_expenses. The description adds little beyond listing outputs; it does not elaborate on parameter syntax or constraints, so the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool analyzes multifamily deals, lists specific outputs (cap rate, cash-on-cash, DSCR, IRR, DFP Score, max offer price, full financial projections), and includes usage context. This distinguishes it from siblings like score_deal and reverse_calc through the breadth of outputs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use it: 'when someone asks about analyzing a property, evaluating a deal, or running the numbers.' However, it does not provide exclusions or mention alternatives like score_deal or market_data, so it's clear on triggers but not on when NOT to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

market_dataLookup Property Market DataA
Read-only

Look up market intelligence for a property address. Returns flood zone, neighborhood income relative to state median, and job growth rate. Use this when someone asks about a market, neighborhood, or location.

ParametersJSON Schema
NameRequiredDescriptionDefault
zipNoZIP code (extracted from address if not provided)
addressYesFull property address including city and state (e.g., '2909 Burgess Dr, Charlotte, NC 28208')

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, openWorldHint=true, and idempotentHint=false, covering the safety and world-awareness profile. The description adds the specific return fields (flood zone, income relative to state median, job growth rate), which is useful context beyond annotations. However, it does not describe any additional behavioral nuances such as data freshness, rate limits, or edge cases (e.g., missing data for some addresses). Given the annotations handle the core safety traits, a score of 3 is appropriate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with zero wasted words. It leads with the primary action ('Look up market intelligence for a property address'), then lists the specific returned data, and finally gives usage guidance. Each sentence earns its place; there is no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only lookup with no output schema, the description adequately covers what the tool does, what it returns, and when to use it. The parameter schema fully documents inputs. However, it doesn't mention potential caveats such as data availability for certain addresses or any limitations on geographic coverage. While not critical, this leaves a small gap in completeness for an agent that might need to handle edge cases. A score of 4 reflects this minor omission.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% — both 'address' and 'zip' have descriptive text in the schema (address includes full property address example, zip mentions auto-extraction). The description does not add any parameter-specific semantics beyond what the schema already provides. Baseline 3 is correct when the schema carries the full parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'look up' and the resource 'market intelligence for a property address', and explicitly lists the specific data returned (flood zone, neighborhood income relative to state median, job growth rate). This distinguishes it from sibling tools like analyze_deal, score_deal, and reverse_calc, which focus on deal analysis and calculations rather than property market data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage guidance: 'Use this when someone asks about a market, neighborhood, or location.' This gives a clear trigger for when to invoke the tool. It does not explicitly mention alternatives or when not to use it, but the context of siblings (deal analysis, scoring, reverse calc) makes the distinction implicit. A clear usage trigger without exclusions earns a 4.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

reverse_calcReverse-Calculate Max Offer PriceA
Read-onlyIdempotent

Calculate the maximum offer price for a multifamily deal based on target return metrics. Back-solves from your desired cap rate, cash-on-cash, DSCR, and/or IRR to find what you should pay. Use this when someone asks 'what should I offer?' or 'what's the max price?'

ParametersJSON Schema
NameRequiredDescriptionDefault
unitsNoNumber of apartment units
targetsYesTarget return metrics — provide at least one
assumptionsNoOverride default underwriting assumptions
monthly_incomeYesTotal monthly rental income in dollars
monthly_expensesNoTotal monthly operating expenses in dollars

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds that it back-solves from metrics, but doesn't detail any side effects, prerequisites, or limitations beyond that. This adds some context but not substantial behavioral depth beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, with two sentences that are perfectly front-loaded. The first sentence states the core purpose, and the second gives clear usage triggers. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has nested objects and multiple parameters, but the description gives an adequate overview of its purpose and usage. It doesn't explain how assumptions work or the fact that multiple targets can be provided, but the schema descriptions cover these. Since there is no output schema, the description implies the return (max price) clearly enough. Overall it is complete for most agent needs.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description mentions target return metrics and back-solving but doesn't elaborate on individual parameters. The schema itself provides detailed descriptions for each parameter, so the description doesn't add extra meaning beyond what the schema already covers.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool calculates the maximum offer price for a multifamily deal based on target return metrics, using specific verbs and resources. It differentiates itself from sibling tools (analyze, score, market data) by focusing on pricing and explicitly invokes 'what should I offer?' which is a distinct use case.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit usage guidance: 'Use this when someone asks ...' which clearly indicates the trigger conditions. However, it does not mention when not to use it or mention alternative tools, so it lacks exclusions and explicit comparisons.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

score_dealScore Multifamily Deal (Quick)A
Read-onlyIdempotent

Quick-score a multifamily deal on the DFP 0-100 scale. Returns the DFP Score and key metrics. Faster than full analysis — use this for quick screening.

ParametersJSON Schema
NameRequiredDescriptionDefault
unitsNoNumber of apartment units
monthly_incomeYesTotal monthly rental income in dollars
purchase_priceYesAsking/purchase price in dollars
monthly_expensesNoTotal monthly operating expenses in dollars
property_addressNoProperty location

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is well covered. The description adds value by specifying the return value (DFP Score and key metrics) and the 'quick' performance characteristic, which goes beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core purpose and return value, followed by usage guidance. Every sentence earns its place, with no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description communicates what the tool does, when to use it, and what it returns. The phrase 'key metrics' is somewhat vague, but the schema and annotations fill in the rest. For a quick-screening tool, this is sufficient for an agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

All 5 parameters have descriptions in the input schema, so coverage is 100%. The tool description does not add any parameter-specific details beyond what the schema provides, so the baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('score'), resource ('multifamily deal'), and scale ('DFP 0-100'), and distinguishes itself from full analysis, which maps to the sibling analyze_deal. The mention of 'key metrics' adds scope, making it clear what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says 'use this for quick screening' and notes it is 'faster than full analysis', which implies an alternative for deeper evaluation. The sibling tools are not named directly, but the context signals list them, so an agent can infer when to choose this tool over analyze_deal.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updatesv0.1.0
    • First observedanalyze_deal
    • First observedmarket_data
    • First observedreverse_calc
    • First observedscore_deal

TDQS

A4.1/5.0
Disambiguation4/5

The tools are mostly distinct: analyze_deal provides full projections, score_deal is a quick screening, reverse_calc back-solves offer price, and market_data is clearly separate. Some overlap exists between analyze_deal and reverse_calc (both return max offer price), but the descriptions clarify their different inputs and use cases.

Naming Consistency3/5

Naming is mixed: analyze_deal and score_deal follow a verb_noun pattern, but reverse_calc is a noun phrase with an abbreviation, and market_data is noun_noun rather than verb_noun. This inconsistency makes the set slightly less predictable.

Tool Count5/5

With 4 tools, the server is well-scoped for its purpose. Each tool addresses a specific need in multifamily deal analysis without being redundant or overwhelming.

Completeness4/5

The tool surface covers the core workflow: full analysis, quick screening, offer price calculation, and market context. Minor gaps exist, such as lack of comparables or a way to compare deals directly, but these are not critical for the stated purpose.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Live real estate market data for 895 US metros. Ask your AI assistant about home prices, rental yields, investment health scores, migration trends, and affordability. Free tier covers top 50 markets (no account needed). Premium tier unlocks all 895 markets, HUD Fair Market Rents, side-by-side market comparison, and filtered market search.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Submarket-level US residential rental intelligence for AI agents. Search, compare, rank, and analyze rent data, trends, vacancy, affordability, and days on market across 1,000+ named submarkets in the 20+ largest US metros. ZIP-level and metro-level queries included. Always current, always expanding. Free tier available.
    1
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to analyze rental property deals using DoorVault IDEAL Scoring v2.0, including Section 8 FMR lookup, tax deduction checklists, and rental metrics calculations.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Provides live commercial real estate data (rates, demographics) and analysis tools (DCF, rent roll parsing, lease abstraction, IC memo generation) within Claude Desktop.
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jbechtel-97/dealflowpro-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server