Skip to content
LangChain

IPCC AR6 Climate Retrieval for LangChain

io.github.aswanisahoo/climate-ipcc-rag

Search IPCC AR6 WG1 and answer with page-level citations, or refuse when unsupported.

client:LangChain transport:stdio runtime:oci

Install IPCC AR6 Climate Retrieval in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "climate-ipcc-rag": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/aswanisahoo/climate-ipcc-rag-mcp:0.1.0"],
        }
})

tools = await client.get_tools()

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

IPCC AR6 Climate Retrieval in other clients