Skip to content
LangChain

Joti for LangChain

com.kompetic/joti

Read your workouts, history, and stats; create and schedule new workouts. Writes are additive only.

client:LangChain transport:streamable-http

Install Joti in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "joti": {
            "transport": "streamable_http",
            "url": "https://joti.kompetic.com/api/ai/mcp",
        }
})

tools = await client.get_tools()

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

Joti in other clients