Skip to content
LangChain

Lenderprice Mini Pricer MCP for LangChain

com.cre8techdev/mini-pricer-mcp

MCP server for mortgage rate pricing and mini pricer management via the Lenderprice API

client:LangChain transport:sse

Install Lenderprice Mini Pricer MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mini-pricer-mcp": {
            "transport": "streamable_http",
            "url": "https://mp-mcp.cre8techdev.com/sse",
        }
})

tools = await client.get_tools()

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

Lenderprice Mini Pricer MCP in other clients