Skip to content
LangChain

Healthcare Provider Intelligence for LangChain

io.github.joinware/healthcare-provider-intelligence

Provider intelligence API joining NPPES, CMS Open Payments, and OIG LEIE with source provenance.

client:LangChain transport:sse

Install Healthcare Provider Intelligence in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "healthcare-provider-intelligence": {
            "transport": "streamable_http",
            "url": "https://healthcare-provider-intelligence.onrender.com/mcp/sse",
        }
})

tools = await client.get_tools()

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

Healthcare Provider Intelligence in other clients