Skip to content
LangChain

Health Data for LangChain

org.memoryapi/health

Health data: NIH grants, WHO statistics, and genetic variants

client:LangChain transport:streamable-http tools:4

Install Health Data in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "health": {
            "transport": "streamable_http",
            "url": "https://health.memoryapi.org/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

Health Data in other clients