Skip to content
LangChain

Wger for LangChain

io.github.pipeworx-io/wger

Wger MCP — wraps wger Workout Manager REST API (free, no auth for read)

client:LangChain transport:streamable-http

Install Wger in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "wger": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/wger/mcp",
        }
})

tools = await client.get_tools()

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

Wger in other clients