Skip to content
LangChain

Hevy (unofficial) for LangChain

io.github.almostjacked/hevy-mcp

Create Hevy routines and analyze your training from chat. Unofficial; BYO Hevy PRO API key.

client:LangChain transport:streamable-http runtime:npm

Install Hevy (unofficial) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hevy-mcp": {
            "transport": "streamable_http",
            "url": "https://hevy-coach.ajwallacemusic.workers.dev/mcp",
        }
})

tools = await client.get_tools()

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

Hevy (unofficial) in other clients