Skip to content
LangChain

part d cap for LangChain

io.github.builtforai/part-d-cap

Medicare Part D out-of-pocket cap: when you hit it, and what the payment plan changes

client:LangChain transport:streamable-http tools:1

Install part d cap in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "part-d-cap": {
            "transport": "streamable_http",
            "url": "https://insurewith.ai/mcp/part-d-cap",
        }
})

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

part d cap in other clients