Skip to content
LangChain

Customer Record Field Prep for LangChain

io.github.wxt-ai/customer-record-field-prep

Prepare a customer record field

client:LangChain transport:streamable-http

Install Customer Record Field Prep in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "customer-record-field-prep": {
            "transport": "streamable_http",
            "url": "https://openings-vote-drilling-initially.trycloudflare.com/mcp/customer-record-field-prep",
        }
})

tools = await client.get_tools()

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

Customer Record Field Prep in other clients