Skip to content
LangChain

Hevy MCP (Remote) for LangChain

io.github.rwestergren/hevy-mcp-remote

Hosted/gateway-ready Hevy fitness MCP: workouts, routines, templates.

client:LangChain transport:stdio runtime:oci

Install Hevy MCP (Remote) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hevy-mcp-remote": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/rwestergren/hevy-mcp:0.1.6"],
        }
})

tools = await client.get_tools()

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

Hevy MCP (Remote) in other clients