Skip to content
LangChain

mistral for LangChain

io.usefulapi/mistral

Manage your Mistral platform — models, files, batch jobs, agents and RAG document libraries.

client:LangChain transport:streamable-http tools:15

Install mistral in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mistral": {
            "transport": "streamable_http",
            "url": "https://mistral.usefulapi.io/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

mistral in other clients