Skip to content
LangChain

hybridlog for LangChain

io.github.imgrund/hybridlog

Reads your own Garmin mirror: readiness, training load, muscle freshness, and read-only SQL.

client:LangChain transport:streamable-http runtime:oci

Install hybridlog in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hybridlog": {
            "transport": "streamable_http",
            "url": "https://{hybridlog_host}/mcp/garmin",
        }
})

tools = await client.get_tools()

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

hybridlog in other clients