Skip to content
LangChain

BMI Kit for LangChain

com.bmikit/body-composition

Body composition for AI: BMI, body fat, FFMI, waist-to-height, plus saved measurement trends.

client:LangChain transport:streamable-http

Install BMI Kit in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "body-composition": {
            "transport": "streamable_http",
            "url": "https://bmikit.com/api/mcp",
        }
})

tools = await client.get_tools()

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

BMI Kit in other clients