Skip to content
LangChain

US Mortgage Calculator for LangChain

com.usmortgagecalc/mortgage

US mortgage calculator and amortization API with 50-state property tax, PMI, and affordability data.

client:LangChain transport:streamable-http tools:11

Install US Mortgage Calculator in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mortgage": {
            "transport": "streamable_http",
            "url": "https://www.usmortgagecalc.com/mcp",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

What LangChain can do once it is connected

US Mortgage Calculator in other clients