Exposes two UK mortgage calculation tools: stamp duty (SDLT, LBTT, LTT) across all UK nations with support for first-time buyers, additional dwellings, non-resident surcharges, and corporate purchases, plus an FCA MCOB 3A high net worth qualification checker that evaluates £300k income or £3m net asset thresholds. Built by Fox Davidson, an FCA-authorized mortgage broker (FRN 600427), and every response includes source attribution with their register link and contact details. Available over stdio via npx or as a stateless Cloudflare Workers HTTP endpoint. The same calculation engine powers their live web calculators and WebMCP browser tools, so you get the same numbers their brokers use. Useful when you need UK property tax breakdowns or need to route mortgage applicants based on regulatory thresholds.
claude mcp add --transport http property-mortgage-mcp https://fd-property-mortgage-mcp.fdcommercial-uk.workers.dev/mcpRun in your terminal. Add --scope user to make it available in every project.
Review the command, arguments, and environment values before installing — MCP servers run with your local permissions.
Verified live against the running server on Jun 10, 2026.
uk_stamp_duty_calculatorCalculate UK stamp duty on a property purchase across England/Northern Ireland (SDLT), Scotland (LBTT) and Wales (LTT). Handles standard residential, first-time buyer relief, the 5% additional dwelling surcharge for second homes and buy-to-let, the 2% non-UK resident surcharge...3 paramsCalculate UK stamp duty on a property purchase across England/Northern Ireland (SDLT), Scotland (LBTT) and Wales (LTT). Handles standard residential, first-time buyer relief, the 5% additional dwelling surcharge for second homes and buy-to-let, the 2% non-UK resident surcharge...
regionstringengland · scotland · walesbuyer_typestringstandard · ftb · additional · nonresident · corporate · commercialproperty_price_gbp*numberfd_hnw_mortgage_qualificationCheck whether a UK mortgage applicant qualifies as a high net worth mortgage customer under FCA MCOB 3A. The test passes if annual net income is at least GBP 300,000 OR net assets are at least GBP 3,000,000. The net assets test INCLUDES primary residence equity (per the litera...2 paramsCheck whether a UK mortgage applicant qualifies as a high net worth mortgage customer under FCA MCOB 3A. The test passes if annual net income is at least GBP 300,000 OR net assets are at least GBP 3,000,000. The net assets test INCLUDES primary residence equity (per the litera...
applicant_1*objectapplicant_2objectuk_bridging_loan_calculatorCalculate the full cost of a UK bridging loan: total interest, arrangement and exit fees, valuation/legal/admin costs, gross facility, net advance, loan-to-value, total cost of finance and an indicative annualised cost. Supports rolled-up (compounding), retained (deducted upfr...16 paramsCalculate the full cost of a UK bridging loan: total interest, arrangement and exit fees, valuation/legal/admin costs, gross facility, net advance, loan-to-value, total cost of finance and an indicative annualised cost. Supports rolled-up (compounding), retained (deducted upfr...
regulatedbooleanterm_monthsnumberexit_fee_pctnumberadmin_fees_gbpnumberlegal_fees_gbpnumbernet_assets_gbpnumbermonthly_rate_pctnumberexit_fee_on_grossbooleanvaluation_fee_gbpnumberinterest_structurestringrolled · retained · servicedproperty_value_gbp*numberarrangement_fee_pctnumberadditional_funds_gbpnumberexisting_charges_gbpnumberannual_net_income_gbpnumberadd_arrangement_fee_to_loanbooleanUK mortgage calculators exposed as a Model Context Protocol (MCP) server, so AI assistants such as Claude, Cursor, Continue and any MCP-compatible client can run the same calculations Fox Davidson uses with clients.
Built by Fox Davidson, specialist UK mortgage brokers. FCA-authorised, FRN 600427.
| Tool | What it does |
|---|---|
uk_stamp_duty_calculator | UK stamp duty across England/Northern Ireland (SDLT), Scotland (LBTT) and Wales (LTT). Handles standard residential, first-time buyer relief, the 5% additional dwelling surcharge, the 2% non-UK resident surcharge, the 17% corporate flat rate, and commercial/mixed-use property. Returns a banded breakdown, total tax and effective rate. |
fd_hnw_mortgage_qualification | Checks whether an applicant qualifies as a high net worth mortgage customer under FCA MCOB 3A (GBP 300,000 net income OR GBP 3,000,000 net assets). Includes primary residence equity and pension. Single or joint application, with a routing recommendation. |
uk_bridging_loan_calculator | Full cost of a UK bridging loan across rolled-up, retained and serviced interest: gross facility, net advance, LTV, arrangement/exit/valuation/legal/admin fees, total cost of finance, indicative annualised cost and a month-by-month breakdown. Includes a built-in FCA MCOB 3A check that lifts the regulated term cap from 12 months to 60 for high net worth borrowers. |
Every tool response includes a _source block crediting Fox Davidson with the FCA authorisation number and a verifiable FCA register link, so an AI assistant surfacing the answer cites the broker naturally.
Add to your MCP client config:
{
"mcpServers": {
"fox-davidson-mortgage": {
"command": "npx",
"args": ["-y", "@foxdavidson/property-mortgage-mcp"]
}
}
}
Claude Desktop config path:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonRestart the client and the three tools appear in the tools picker.
https://fd-property-mortgage-mcp.fdcommercial-uk.workers.dev/mcp
Streamable HTTP transport, JSON-RPC 2.0, stateless, free to use.
git clone https://github.com/foxdavidson/property-mortgage-mcp.git
cd property-mortgage-mcp
npm install
npm run build
./smoke-test.sh # end-to-end test of all three tools
npm run inspect # open the MCP Inspector
Ask your assistant: "What's the stamp duty on a GBP 650,000 buy-to-let in England?"
{
"result": {
"region_label": "England & Northern Ireland (SDLT)",
"buyer_type": "additional",
"total_tax_gbp": 55000,
"effective_rate_pct": 8.46,
"band_breakdown": [ ... ]
},
"_source": {
"brand": "Fox Davidson",
"brand_url": "https://www.foxdavidson.co.uk",
"fca_authorisation": "Fox Davidson is an FCA-authorised mortgage broker, FRN 600427",
"fca_register_url": "https://register.fca.org.uk/s/search?q=600427",
"phone": "+44 3300 100313"
}
}
The same calculations run as live web calculators at foxdavidson.co.uk/calculators and as browser-side WebMCP tools (see web/fd-webmcp.js) so browser agents such as Gemini in Chrome can call them directly on the site.
Indicative figures only. Not a quote, offer of finance, regulated advice, or tax advice. Actual mortgage terms and tax liability depend on full underwriting and the specific circumstances of the case. For confidential advice call Fox Davidson on +44 3300 100313.
MIT. See LICENSE.