Skip to content
LangChain

LLMIntel Model Lifecycle for LangChain

ai.llmintel/model-lifecycle

Check whether an LLM model id is deprecated, retiring, or retired, and what to migrate to.

client:LangChain transport:streamable-http runtime:npm tools:5

Install LLMIntel Model Lifecycle in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "model-lifecycle": {
            "transport": "streamable_http",
            "url": "https://llmintel.ai/v1/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

LLMIntel Model Lifecycle in other clients