Skip to content
LangChain

CLIO Adios for LangChain

io.github.iowarp/adios-mcp

Fetch and analyze BP5 data files using ADIOS2. Access scientific data, metadata, and attributes...

client:LangChain transport:stdio runtime:pypi

Install CLIO Adios in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "adios-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["clio-kit"],
        }
})

tools = await client.get_tools()

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

CLIO Adios in other clients