Skip to content
LangChain

inbody api mcp for LangChain

io.github.rwestergren/inbody-api-mcp

MCP server for InBody body-composition data — scans, body fat, muscle mass, body water

client:LangChain transport:stdio runtime:pypi

Install inbody api mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "inbody-api-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["inbody-api-mcp"],
        }
})

tools = await client.get_tools()

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

inbody api mcp in other clients