Skip to content
LangChain

gym plus for LangChain

plus.gym/gym-plus

Connect ChatGPT or Claude to your Gym Plus account to log and review workouts with AI coaching.

client:LangChain transport:streamable-http

Install gym plus in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "gym-plus": {
            "transport": "streamable_http",
            "url": "https://gym.plus/api/mcp",
        }
})

tools = await client.get_tools()

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

gym plus in other clients